diff --git a/build-template/build.cmd b/build-template/build.cmd index d54931bc8f..7045ee1f84 100644 --- a/build-template/build.cmd +++ b/build-template/build.cmd @@ -1,10 +1,18 @@ @echo off cd %~dp0 -IF EXIST .nuget\NuGet.exe goto restore +SETLOCAL +SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe + +IF EXIST %CACHED_NUGET% goto copynuget echo Downloading latest version of NuGet.exe... +IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet +@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'" + +:copynuget +IF EXIST .nuget\nuget.exe goto restore md .nuget -@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '.nuget\NuGet.exe'" +copy %CACHED_NUGET% .nuget\nuget.exe > nul :restore IF EXIST packages\KoreBuild goto run diff --git a/build.cmd b/build.cmd index e2ce3f1317..ff2cbdb516 100644 --- a/build.cmd +++ b/build.cmd @@ -1,12 +1,19 @@ @echo off cd %~dp0 -IF EXIST .nuget\NuGet.exe goto part2 -echo Downloading latest version of NuGet.exe... -mkdir .nuget -@powershell -NoProfile -ExecutionPolicy unrestricted -Command "((new-object net.webclient).DownloadFile('https://nuget.org/nuget.exe', '.nuget\NuGet.exe'))" +SETLOCAL +SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe -:part2 -set EnableNuGetPackageRestore=true -.nuget\NuGet.exe install Sake -version 0.2 -o packages +IF EXIST %CACHED_NUGET% goto copynuget +echo Downloading latest version of NuGet.exe... +IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet +@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'" + +:copynuget +IF EXIST .nuget\nuget.exe goto build +md .nuget +copy %CACHED_NUGET% .nuget\nuget.exe > nul + +:build +.nuget\nuget.exe install Sake -version 0.2 -o packages packages\Sake.0.2\tools\Sake.exe -I build -f makefile.shade %*