Commit e8c246d 1 parent bdbe47d commit e8c246d Copy full SHA for e8c246d
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Write-Host "Preparing to run build script..."
49
49
$PS_SCRIPT_ROOT = split-path - parent $MyInvocation.MyCommand.Definition ;
50
50
$TOOLS_DIR = Join-Path $PSScriptRoot " tools"
51
51
$NUGET_EXE = Join-Path $TOOLS_DIR " nuget.exe"
52
- $NUGET_URL = " http ://dist.nuget.org/win-x86-commandline/latest /nuget.exe"
52
+ $NUGET_URL = " https ://dist.nuget.org/win-x86-commandline/v4.0.0 /nuget.exe"
53
53
$CAKE_EXE = Join-Path $TOOLS_DIR " Cake/Cake.exe"
54
54
$PACKAGES_CONFIG = Join-Path $TOOLS_DIR " packages.config"
55
55
Original file line number Diff line number Diff line change 68
68
# Download NuGet if it does not exist.
69
69
if [ ! -f " $NUGET_EXE " ]; then
70
70
echo " Downloading NuGet..."
71
- curl -Lsfo " $NUGET_EXE " https://dist.nuget.org/win-x86-commandline/latest /nuget.exe
71
+ curl -Lsfo " $NUGET_EXE " https://dist.nuget.org/win-x86-commandline/v4.0.0 /nuget.exe
72
72
if [ $? -ne 0 ]; then
73
73
echo " An error occured while downloading nuget.exe."
74
74
exit 1
You can’t perform that action at this time.
0 commit comments