diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-16 16:00:41 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-17 01:01:59 -0700 |
commit | 91a3a42439d87a5b626e61244edcb8c8e231cc5f (patch) | |
tree | 94a5f52176cbdd7755c2bff4721a2d1e5f683799 /src/ext | |
parent | 1446d4e582465af5c09db3fba16afc59529a3863 (diff) | |
download | wix-91a3a42439d87a5b626e61244edcb8c8e231cc5f.tar.gz wix-91a3a42439d87a5b626e61244edcb8c8e231cc5f.tar.bz2 wix-91a3a42439d87a5b626e61244edcb8c8e231cc5f.zip |
Fix batch file command-line parsing
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/Bal/bal.cmd | 2 | ||||
-rw-r--r-- | src/ext/Dependency/dependency.cmd | 2 | ||||
-rw-r--r-- | src/ext/DifxApp/difxapp.cmd | 2 | ||||
-rw-r--r-- | src/ext/DirectX/directx.cmd | 2 | ||||
-rw-r--r-- | src/ext/Firewall/firewall.cmd | 2 | ||||
-rw-r--r-- | src/ext/Http/http.cmd | 2 | ||||
-rw-r--r-- | src/ext/Iis/iis.cmd | 2 | ||||
-rw-r--r-- | src/ext/Msmq/msmq.cmd | 2 | ||||
-rw-r--r-- | src/ext/NetFx/netfx.cmd | 2 | ||||
-rw-r--r-- | src/ext/PowerShell/ps.cmd | 2 | ||||
-rw-r--r-- | src/ext/Sql/sql.cmd | 2 | ||||
-rw-r--r-- | src/ext/UI/ui.cmd | 2 | ||||
-rw-r--r-- | src/ext/Util/util.cmd | 2 | ||||
-rw-r--r-- | src/ext/VisualStudio/vs.cmd | 2 | ||||
-rw-r--r-- | src/ext/ext.cmd | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/src/ext/Bal/bal.cmd b/src/ext/Bal/bal.cmd index 0bc55dfb..6253c5a7 100644 --- a/src/ext/Bal/bal.cmd +++ b/src/ext/Bal/bal.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Building ext\Util %_C% using %_N% | 9 | @echo Building ext\Util %_C% using %_N% |
diff --git a/src/ext/Dependency/dependency.cmd b/src/ext/Dependency/dependency.cmd index 74e72798..e367ab1b 100644 --- a/src/ext/Dependency/dependency.cmd +++ b/src/ext/Dependency/dependency.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Dependency.wixext build %_C% | 9 | @echo Dependency.wixext build %_C% |
diff --git a/src/ext/DifxApp/difxapp.cmd b/src/ext/DifxApp/difxapp.cmd index 754ec455..da2fe7a9 100644 --- a/src/ext/DifxApp/difxapp.cmd +++ b/src/ext/DifxApp/difxapp.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Dependency.wixext build %_C% | 9 | @echo Dependency.wixext build %_C% |
diff --git a/src/ext/DirectX/directx.cmd b/src/ext/DirectX/directx.cmd index 1e1baba8..bc1068d7 100644 --- a/src/ext/DirectX/directx.cmd +++ b/src/ext/DirectX/directx.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo DirectX.wixext build %_C% | 9 | @echo DirectX.wixext build %_C% |
diff --git a/src/ext/Firewall/firewall.cmd b/src/ext/Firewall/firewall.cmd index a735aa23..47a5edc5 100644 --- a/src/ext/Firewall/firewall.cmd +++ b/src/ext/Firewall/firewall.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Firewall.wixext build %_C% | 9 | @echo Firewall.wixext build %_C% |
diff --git a/src/ext/Http/http.cmd b/src/ext/Http/http.cmd index e1994af3..0115db8b 100644 --- a/src/ext/Http/http.cmd +++ b/src/ext/Http/http.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Http.wixext build %_C% | 9 | @echo Http.wixext build %_C% |
diff --git a/src/ext/Iis/iis.cmd b/src/ext/Iis/iis.cmd index 02f9f393..b5db37ac 100644 --- a/src/ext/Iis/iis.cmd +++ b/src/ext/Iis/iis.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Iis.wixext build %_C% | 9 | @echo Iis.wixext build %_C% |
diff --git a/src/ext/Msmq/msmq.cmd b/src/ext/Msmq/msmq.cmd index 1a60dad3..dc85e8e9 100644 --- a/src/ext/Msmq/msmq.cmd +++ b/src/ext/Msmq/msmq.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Msmq.wixext build %_C% | 9 | @echo Msmq.wixext build %_C% |
diff --git a/src/ext/NetFx/netfx.cmd b/src/ext/NetFx/netfx.cmd index d5e0989b..f5e3984e 100644 --- a/src/ext/NetFx/netfx.cmd +++ b/src/ext/NetFx/netfx.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Building ext\NetFx %_C% | 9 | @echo Building ext\NetFx %_C% |
diff --git a/src/ext/PowerShell/ps.cmd b/src/ext/PowerShell/ps.cmd index 66eed1db..b5a0657b 100644 --- a/src/ext/PowerShell/ps.cmd +++ b/src/ext/PowerShell/ps.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo PowerShell.wixext build %_C% | 9 | @echo PowerShell.wixext build %_C% |
diff --git a/src/ext/Sql/sql.cmd b/src/ext/Sql/sql.cmd index 0e66816d..a18d4648 100644 --- a/src/ext/Sql/sql.cmd +++ b/src/ext/Sql/sql.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Sql.wixext build %_C% | 9 | @echo Sql.wixext build %_C% |
diff --git a/src/ext/UI/ui.cmd b/src/ext/UI/ui.cmd index 1b5a3a6c..b0380adc 100644 --- a/src/ext/UI/ui.cmd +++ b/src/ext/UI/ui.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Building ext\UI %_C% | 9 | @echo Building ext\UI %_C% |
diff --git a/src/ext/Util/util.cmd b/src/ext/Util/util.cmd index 1b189086..3913c892 100644 --- a/src/ext/Util/util.cmd +++ b/src/ext/Util/util.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo Building ext\Util %_C% using %_N% | 9 | @echo Building ext\Util %_C% using %_N% |
diff --git a/src/ext/VisualStudio/vs.cmd b/src/ext/VisualStudio/vs.cmd index 21a9768b..12caed8c 100644 --- a/src/ext/VisualStudio/vs.cmd +++ b/src/ext/VisualStudio/vs.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo VisualStudio.wixext build %_C% | 9 | @echo VisualStudio.wixext build %_C% |
diff --git a/src/ext/ext.cmd b/src/ext/ext.cmd index 49120180..0429f542 100644 --- a/src/ext/ext.cmd +++ b/src/ext/ext.cmd | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release& shift | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 7 | @if not "%1"=="" shift & goto parse_args |
8 | 8 | ||
9 | @echo ext build %_C% | 9 | @echo ext build %_C% |