diff options
author | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-08-15 10:10:00 +0000 |
---|---|---|
committer | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-08-15 10:10:00 +0000 |
commit | 8fdf350d51eaf51eabd4f6a71eac35bc716a16b5 (patch) | |
tree | c5377a4505620d20238f9eb1f4e7995c3c46e17f | |
parent | e9accfc9db71d64443b0c2494055774987618974 (diff) |
more fixes for poison characters in paths
git-svn-id: svn://tug.org/texlive/trunk@14691 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf/scripts/texlive/updater-w32 | 6 |
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
|