diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2020-08-23 14:05:54 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2020-08-23 14:05:54 +0000 |
commit | e725b86fc4aa92a36dcf2937c66f4b45df547f82 (patch) | |
tree | 18db4aeb17ab3f67b98784f2ee59c0c1f64514d1 /Master/install-tl-windows.bat | |
parent | 8c31675affbd6eafafbfc6a71e2dc44cb4643e61 (diff) |
Remove inappropriate quotes from set commands
git-svn-id: svn://tug.org/texlive/trunk@56157 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl-windows.bat')
-rwxr-xr-x | Master/install-tl-windows.bat | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/install-tl-windows.bat b/Master/install-tl-windows.bat index 2a9b23afdaf..640c7396c24 100755 --- a/Master/install-tl-windows.bat +++ b/Master/install-tl-windows.bat @@ -138,8 +138,10 @@ set args=%args% %p% goto rebuildargs
:nomoreargs
-set wish="%instroot%tlpkg\tltcl\tclkit.exe"
-if not exist "%wish%" set wish="%instroot%tlpkg\tltcl\bin\wish.exe"
+rem set preserves quotes, and its argument is the remainder of the line
+rem so do not here quote paths with spaces in it
+set wish=%instroot%tlpkg\tltcl\tclkit.exe
+if not exist "%wish%" set wish=%instroot%tlpkg\tltcl\bin\wish.exe
if not exist "%wish%" set tcl=no
if %forbid% == yes set tcl=no
|