diff options
Diffstat (limited to 'build.cmd')
-rw-r--r-- | build.cmd | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/build.cmd b/build.cmd new file mode 100644 index 0000000..25cb3b5 --- /dev/null +++ b/build.cmd @@ -0,0 +1,19 @@ +@echo off +cd %~dp0 + +SETLOCAL +SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe + +IF EXIST %CACHED_NUGET% goto copynuget +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 +call npm install -g gulp +call npm install +call gulp |