Update template's `build.cmd` to match best of our repo's

- #347
- `%KOREBUILD_VERSION%` doesn't work without this fix

Will apply accross the repos once this is approved.
This commit is contained in:
Doug Bunting 2016-02-24 11:16:29 -08:00
parent 0efa8c9204
commit edd1f7a0d0
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%
)