diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-10-16 12:49:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 12:49:45 +0200 |
commit | 6c5725e3a26bccebdc431d92db3c20f3ef393006 (patch) | |
tree | 0776742c6eeb2db58fc3c9db9a5935c6e25df06c | |
parent | 7fc52337bc757ec210defcb13404d88dceac5100 (diff) | |
parent | e051bcb8d0b061ca78baea802b0ae1d2b8a56df9 (diff) |
Merge pull request #14620 from Rechi/fix/windowsBuildScript
[windows] make-addons: remove surrounding quotation marks
-rw-r--r-- | tools/buildsteps/windows/make-addons.bat | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/buildsteps/windows/make-addons.bat b/tools/buildsteps/windows/make-addons.bat index c68cf17052..b8e0ac59ac 100644 --- a/tools/buildsteps/windows/make-addons.bat +++ b/tools/buildsteps/windows/make-addons.bat @@ -10,16 +10,16 @@ SET store= SETLOCAL EnableDelayedExpansion FOR %%b IN (%*) DO ( - IF %%b == install ( + IF %%~b == install ( SET install=true - ) ELSE ( IF %%b == clean ( + ) ELSE ( IF %%~b == clean ( SET clean=true - ) ELSE ( IF %%b == package ( + ) ELSE ( IF %%~b == package ( SET package=true - ) ELSE ( IF %%b == win10 ( + ) ELSE ( IF %%~b == win10 ( SET store=store ) ELSE ( - SET addon=!addon! %%b + SET addon=!addon! %%~b )))) ) SETLOCAL DisableDelayedExpansion |