@joebigelow / wix-1 / commits / 521eb3c9

Very minor clean up to global build scripts

Rob Mensching committed Jul 26, 2022 at 16:37 UTC 521eb3c9cf38823a2c4019abb85dc0b3200b92cb
2 files changed +2 -2
devbuild.cmd
+1 -2
@@ -6,11 +6,10 @@ pushd %~dp0
6 :parse_args
7 if /i "%1"=="release" set _C=Release
8 if /i "%1"=="inc" set _INCREMENTAL=1
9 -if /i "%1"=="incremental" set _INCREMENTAL=1
9 if /i "%1"=="clean" set _INCREMENTAL= & set _CLEAN=1
10 if not "%1"=="" shift & goto parse_args
11
13 -if not "%_INCREMENTAL"=="1" call src\clean.cmd
12 +if not "%_INCREMENTAL%"=="1" call src\clean.cmd
13 if not "%_CLEAN%"=="" goto end
14
15 src\build_all.cmd %_C%
src/clean.cmd
+1
@@ -25,6 +25,7 @@ if exist "%_NUGET_CACHE%\wixtoolset.bootstrappercore.native" rd /s/q "%_NUGET_CA
25 if exist "%_NUGET_CACHE%\wixtoolset.burn" rd /s/q "%_NUGET_CACHE%\wixtoolset.burn"
26 if exist "%_NUGET_CACHE%\wixtoolset.core" rd /s/q "%_NUGET_CACHE%\wixtoolset.core"
27 if exist "%_NUGET_CACHE%\wixtoolset.core.burn" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.burn"
28 +if exist "%_NUGET_CACHE%\wixtoolset.core.extensioncache" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.extensioncache"
29 if exist "%_NUGET_CACHE%\wixtoolset.core.native" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.native"
30 if exist "%_NUGET_CACHE%\wixtoolset.core.testpackage" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.testpackage"
31 if exist "%_NUGET_CACHE%\wixtoolset.core.windowsinstaller" rd /s/q "%_NUGET_CACHE%\wixtoolset.core.windowsinstaller"