Skip to content

Commit

Permalink
Fixed variable name (nuke-build#1186)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo Calheiros committed Apr 5, 2024
1 parent e9401fb commit 7fcb610
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Nuke.Common/Tools/SignTool/SignToolSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ private static string GetToolPath()

if(signToolPath == null)
{
var nugetPath = SettingsUtility.GetGlobalPackagesFolder(Settings.LoadDefaultSettings(null));
var nugetPackagesPath = SettingsUtility.GetGlobalPackagesFolder(Settings.LoadDefaultSettings(null));

signToolPath = AbsolutePath.Create(nugetPath)
signToolPath = AbsolutePath.Create(nugetPackagesPath)
.GlobFiles($"{microsoftBuildToolsNugetPackage}/{windowsKitVersionWildcard}/bin/{windowsKitVersionWildcard}/{platformIdentifier}/{signtoolExe}")
.LastOrDefault();

Expand Down

0 comments on commit 7fcb610

Please sign in to comment.