Update `build.cmd` to match latest template

- aspnet/Universe#347
- `%KOREBUILD_VERSION%` doesn't work without this fix
This commit is contained in:
Doug Bunting 2016-02-24 12:49:55 -08:00
parent b294828b0f
commit da93a75da4
1 changed files with 4 additions and 5 deletions

View File

@ -28,12 +28,11 @@ IF NOT EXIST %NUGET_PATH% (
copy %CACHED_NUGET% %NUGET_PATH% > nul
)
SET KOREBUILD_DOWNLOAD_ARGS=
IF NOT "%KOREBUILD_VERSION%"=="" (
SET KOREBUILD_DOWNLOAD_ARGS=-version %KOREBUILD_VERSION%
)
IF NOT EXIST %KOREBUILD_FOLDER% (
SET KOREBUILD_DOWNLOAD_ARGS=
IF NOT "%KOREBUILD_VERSION%"=="" (
SET KOREBUILD_DOWNLOAD_ARGS=-version %KOREBUILD_VERSION%
)
%BUILD_FOLDER%\nuget.exe install KoreBuild-dotnet -ExcludeVersion -o %BUILD_FOLDER% -nocache -pre %KOREBUILD_DOWNLOAD_ARGS%
)