File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
autobuilder/Semmle.Autobuild.Shared Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ private static BuildScript DownloadNugetExe<TAutobuildOptions>(IAutobuilder<TAut
191
191
} )
192
192
&
193
193
BuildScript . DownloadFile (
194
- FileUtils . nugetExeUrl ,
194
+ FileUtils . NugetExeUrl ,
195
195
path ,
196
196
e => builder . Log ( Severity . Warning , $ "Failed to download 'nuget.exe': { e . Message } ") )
197
197
&
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ private string DownloadNugetExe(string sourceDir)
83
83
progressMonitor . LogInfo ( "Attempting to download nuget.exe" ) ;
84
84
try
85
85
{
86
- FileUtils . DownloadFile ( FileUtils . nugetExeUrl , nuget ) ;
86
+ FileUtils . DownloadFile ( FileUtils . NugetExeUrl , nuget ) ;
87
87
progressMonitor . LogInfo ( $ "Downloaded nuget.exe to { nuget } ") ;
88
88
return nuget ;
89
89
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace Semmle.Util
10
10
{
11
11
public static class FileUtils
12
12
{
13
- public const string nugetExeUrl = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" ;
13
+ public const string NugetExeUrl = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" ;
14
14
15
15
public static string ConvertToWindows ( string path )
16
16
{
You can’t perform that action at this time.
0 commit comments