Updating Sake to always use latest version
This commit is contained in:
parent
d0dc4875de
commit
bb912deea4
|
|
@ -23,7 +23,7 @@ IF %BUILDCMD_KOREBUILD_VERSION%=="" (
|
||||||
) ELSE (
|
) ELSE (
|
||||||
.nuget\NuGet.exe install KoreBuild -version %BUILDCMD_KOREBUILD_VERSION% -ExcludeVersion -o packages -nocache -pre
|
.nuget\NuGet.exe install KoreBuild -version %BUILDCMD_KOREBUILD_VERSION% -ExcludeVersion -o packages -nocache -pre
|
||||||
)
|
)
|
||||||
.nuget\NuGet.exe install Sake -version 0.2.2 -o packages -ExcludeVersion
|
.nuget\NuGet.exe install Sake -ExcludeVersion -Source https://www.nuget.org/api/v2/ -Out packages
|
||||||
|
|
||||||
IF "%SKIP_DNX_INSTALL%"=="1" goto run
|
IF "%SKIP_DNX_INSTALL%"=="1" goto run
|
||||||
IF %BUILDCMD_DNX_VERSION%=="" (
|
IF %BUILDCMD_DNX_VERSION%=="" (
|
||||||
|
|
|
||||||
2
build.sh
2
build.sh
|
|
@ -24,7 +24,7 @@ fi
|
||||||
|
|
||||||
if test ! -d packages/KoreBuild; then
|
if test ! -d packages/KoreBuild; then
|
||||||
mono .nuget/nuget.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
|
mono .nuget/nuget.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
|
||||||
mono .nuget/nuget.exe install Sake -version 0.2.2 -o packages -ExcludeVersion
|
mono .nuget/nuget.exe install Sake -ExcludeVersion -Source https://www.nuget.org/api/v2/ -Out packages
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! type dnvm > /dev/null 2>&1; then
|
if ! type dnvm > /dev/null 2>&1; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue