summaryrefslogtreecommitdiff
path: root/Master/texmf
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf')
-rw-r--r--Master/texmf/scripts/texlive/updater-w326
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/updater-w32 b/Master/texmf/scripts/texlive/updater-w32
index 2e5b242167a..0f36ff6b163 100644
--- a/Master/texmf/scripts/texlive/updater-w32
+++ b/Master/texmf/scripts/texlive/updater-w32
@@ -106,8 +106,8 @@ rem Get TL installation root and log file location
for /f "tokens=1-2 delims=;" %%I in (
'kpsewhich -expand-var="$SELFAUTOLOC/:;$TEXMFSYSVAR/web2c/tlmgr.log"'
) do (
- set tlroot=%%~fI
- set tlmgrlog=%%~fJ
+ set "tlroot=%%~fI"
+ set "tlmgrlog=%%~fJ"
)
set "tlroot=%tlroot:\bin\win32\:=%"
if not exist "%tlroot%\texmf\scripts\texlive\tlmgr.pl" (
@@ -115,7 +115,7 @@ if not exist "%tlroot%\texmf\scripts\texlive\tlmgr.pl" (
goto :abort
)
call :debug "TL root: %tlroot%"
-if not exist "%tlmgrlog%" (set tlmgrlog=%~dpn0.log)
+if not exist "%tlmgrlog%" (set "tlmgrlog=%~dpn0.log")
rem Make a private copy of tar.exe
copy /y "%tlroot%\tlpkg\installer\tar.exe" "%tlroot%\temp\tar-w32.exe" >nul