aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devbuild.cmd3
-rw-r--r--src/clean.cmd1
2 files changed, 2 insertions, 2 deletions
diff --git a/devbuild.cmd b/devbuild.cmd
index 2f8ee880..06239807 100644
--- a/devbuild.cmd
+++ b/devbuild.cmd
@@ -6,11 +6,10 @@ pushd %~dp0
6:parse_args 6:parse_args
7if /i "%1"=="release" set _C=Release 7if /i "%1"=="release" set _C=Release
8if /i "%1"=="inc" set _INCREMENTAL=1 8if /i "%1"=="inc" set _INCREMENTAL=1
9if /i "%1"=="incremental" set _INCREMENTAL=1
10if /i "%1"=="clean" set _INCREMENTAL= & set _CLEAN=1 9if /i "%1"=="clean" set _INCREMENTAL= & set _CLEAN=1
11if not "%1"=="" shift & goto parse_args 10if not "%1"=="" shift & goto parse_args
12 11
13if not "%_INCREMENTAL"=="1" call src\clean.cmd 12if not "%_INCREMENTAL%"=="1" call src\clean.cmd
14if not "%_CLEAN%"=="" goto end 13if not "%_CLEAN%"=="" goto end
15 14
16src\build_all.cmd %_C% 15src\build_all.cmd %_C%
diff --git a/src/clean.cmd b/src/clean.cmd
index 9c4fa0dc..9eccf22a 100644
--- a/src/clean.cmd
+++ b/src/clean.cmd
@@ -25,6 +25,7 @@ if exist "%_NUGET_CACHE%\wixtoolset.bootstrappercore.native" rd /s/q "%_NUGET_CA
25if exist "%_NUGET_CACHE%\wixtoolset.burn" rd /s/q "%_NUGET_CACHE%\wixtoolset.burn" 25if exist "%_NUGET_CACHE%\wixtoolset.burn" rd /s/q "%_NUGET_CACHE%\wixtoolset.burn"
26if exist "%_NUGET_CACHE%\wixtoolset.core" rd /s/q "%_NUGET_CACHE%\wixtoolset.core" 26if exist "%_NUGET_CACHE%\wixtoolset.core" rd /s/q "%_NUGET_CACHE%\wixtoolset.core"
27if exist "%_NUGET_CACHE%\wixtoolset.core.burn" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.burn" 27if exist "%_NUGET_CACHE%\wixtoolset.core.burn" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.burn"
28if exist "%_NUGET_CACHE%\wixtoolset.core.extensioncache" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.extensioncache"
28if exist "%_NUGET_CACHE%\wixtoolset.core.native" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.native" 29if exist "%_NUGET_CACHE%\wixtoolset.core.native" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.native"
29if exist "%_NUGET_CACHE%\wixtoolset.core.testpackage" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.testpackage" 30if exist "%_NUGET_CACHE%\wixtoolset.core.testpackage" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.testpackage"
30if exist "%_NUGET_CACHE%\wixtoolset.core.windowsinstaller" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.windowsinstaller" 31if exist "%_NUGET_CACHE%\wixtoolset.core.windowsinstaller" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.windowsinstaller"