aboutsummaryrefslogtreecommitdiff
path: root/devbuild.cmd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-07-26 16:37:24 -0700
committerRob Mensching <rob@firegiant.com>2022-08-01 20:25:19 -0700
commit521eb3c9cf38823a2c4019abb85dc0b3200b92cb (patch)
treee3f3bdc93be44efd87ad877811830e74aaf383b8 /devbuild.cmd
parent16d21aba21a303acdf59061811044b92b7df3863 (diff)
downloadwix-521eb3c9cf38823a2c4019abb85dc0b3200b92cb.tar.gz
wix-521eb3c9cf38823a2c4019abb85dc0b3200b92cb.tar.bz2
wix-521eb3c9cf38823a2c4019abb85dc0b3200b92cb.zip
Very minor clean up to global build scripts
Diffstat (limited to 'devbuild.cmd')
-rw-r--r--devbuild.cmd3
1 files changed, 1 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%