Skip to content

Commit

Permalink
Pin NuGet.exe version
Browse files Browse the repository at this point in the history
There are issues with the latest nuget.exe builds on mono, so we'll pin the nuget.exe version downloaded in the bootstrapped to 2.8.6 for now.
  • Loading branch information
Redth committed May 12, 2016
1 parent 5b40a1b commit 63cb12b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ fi
# Download NuGet if it does not exist.
if [ ! -f "$NUGET_EXE" ]; then
echo "Downloading NuGet..."
curl -Lsfo "$NUGET_EXE" https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
# For now grab explicit 2.8.6 version instead of: https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
curl -Lsfo "$NUGET_EXE" https://dist.nuget.org/win-x86-commandline/v2.8.6/nuget.exe
if [ $? -ne 0 ]; then
echo "An error occured while downloading nuget.exe."
exit 1
Expand Down

0 comments on commit 63cb12b

Please sign in to comment.