Skip to content

Commit

Permalink
Use new sct path.
Browse files Browse the repository at this point in the history
  • Loading branch information
allisterb committed Feb 14, 2022
1 parent 9c2bfdf commit 05b031c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Silver.CLI.Core/Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static bool Ssc(params string[] args)
public static string? Sct(bool echo = false, params string[] args)
{
var ret = RunCmd(
Path.Combine(AssemblyLocation, "sct", "Stratis.SmartContracts.Tools.Sct.exe"),
Path.Combine(AssemblyLocation, "sct", "sct.exe"),
args.Select(a => a.StartsWith("/") ? a.TrimStart('/').Insert(0, "--") : a).JoinWithSpaces(),
Path.Combine(AssemblyLocation, "sct"), isNETCoreTool: true
);
Expand Down

0 comments on commit 05b031c

Please sign in to comment.