Skip to content

Commit

Permalink
Fix path to mage. #219
Browse files Browse the repository at this point in the history
  • Loading branch information
clairernovotny committed Aug 6, 2020
1 parent 6ef25cf commit d8f24d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pr:
- version.json

pool:
vmImage: windows-2019
vmImage: windows-latest

variables:
BuildConfiguration: Release
Expand Down
2 changes: 1 addition & 1 deletion src/SignService/SigningTools/MageSignService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public MageSignService(IOptionsMonitor<AzureADOptions> aadOptions,
this.telemetryLogger = telemetryLogger;
this.directoryUtility = directoryUtility;

magetoolPath = Path.Combine(hostingEnvironment.ContentRootPath, "tools\\SDK\\mage.exe");
magetoolPath = Path.Combine(hostingEnvironment.ContentRootPath, "tools\\SDK\\x86\\mage.exe");
signToolName = nameof(MageSignService);
// Need to delay this as it'd create a dependency loop if directly in the ctor
signToolAggregate = new Lazy<ISigningToolAggregate>(() => serviceProvider.GetService<ISigningToolAggregate>());
Expand Down

0 comments on commit d8f24d6

Please # to comment.