Skip to content

Commit

Permalink
Move SignTool to tools/cert
Browse files Browse the repository at this point in the history
refs: #42
  • Loading branch information
Yuriy committed Nov 25, 2019
1 parent 255f131 commit 271a40a
Show file tree
Hide file tree
Showing 14 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/build/BullseyeTargets/SignProductBinariesTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ public class SignProductBinariesTarget : SignToolTargetBase<SignProductBinariesT
{
public static async Task RunAsync(IElastiBuildCommand cmd, BuildContext ctx, string target)
{
var SignToolExePath = Path.Combine(ctx.ToolsDir, MagicStrings.Files.SignToolExe);
var SignToolExePath = Path.Combine(
ctx.ToolsDir,
MagicStrings.Dirs.Cert,
MagicStrings.Files.SignToolExe);

var (certPass, SignToolArgs) = MakeSignToolArgs(ctx, target);

var ap = ctx.GetArtifactPackage();
Expand Down
1 change: 1 addition & 0 deletions src/shared/MagicStrings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public static class Dirs
public static readonly string Resources = "resources";
public static readonly string Config = "config";
public static readonly string Compiler = "compiler";
public static readonly string Cert = "cert";
}

public static class Services
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 271a40a

Please sign in to comment.