diff options
author | Norbert Preining <preining@logic.at> | 2009-01-19 22:09:34 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-01-19 22:09:34 +0000 |
commit | e0d7ae48bf5c441b6c4510e52cc70d06c8be0b9f (patch) | |
tree | cfa3aa297b83e0124b587c8210bd9d6973743836 /Master/bin/win32 | |
parent | 5fa9b92e3aceb82b4b0730c725d86424f0e1af78 (diff) |
tlmgr2 -> tlmgr
git-svn-id: svn://tug.org/texlive/trunk@11917 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/win32')
-rwxr-xr-x | Master/bin/win32/tlmgr.bat | 28 | ||||
-rwxr-xr-x | Master/bin/win32/tlmgr1.bat | 8 | ||||
-rwxr-xr-x | Master/bin/win32/tlmgr2.bat | 24 |
3 files changed, 30 insertions, 30 deletions
diff --git a/Master/bin/win32/tlmgr.bat b/Master/bin/win32/tlmgr.bat index fe949613d7c..3227c961498 100755 --- a/Master/bin/win32/tlmgr.bat +++ b/Master/bin/win32/tlmgr.bat @@ -1,8 +1,24 @@ @echo off
-rem tl-w32-starter.bat
-rem universal script starter, batch file part
-rem this program calls the tl-w32-wrapper.texlua
+rem Advanced started for tlmgr2 with auto-update
+rem Copyright 2009 by Tomasz M. Trzeciak <t.m.trzeciak@googlemail.com>
+rem Public Domain
+rem
+
setlocal
-set ownpath=%~dp0%
-texlua "%ownpath%tl-w32-wrapper.texlua" "%~dpn0" %*
-endlocal
+rem TL installation root
+for %%P in ("%~dp0..\..") do set "tlroot=%%~fP"
+
+rem Start tlmgr
+set PERL5LIB=%tlroot%\tlpkg\tlperl\lib
+"%tlroot%\tlpkg\tlperl\bin\perl.exe" "%tlroot%\texmf\scripts\texlive\tlmgr2.pl" %*
+
+rem Check for updater script
+set "updater=%tlroot%\tlpkg\installer\updater.bat"
+if not exist "%updater%" exit /b
+if exist "%updater%.bat" del "%updater%.bat"
+ren "%updater%" updater.bat.bat
+if errorlevel 1 exit /b 1
+
+rem Run updater script
+endlocal & call "%updater%.bat" & exit /b
+
diff --git a/Master/bin/win32/tlmgr1.bat b/Master/bin/win32/tlmgr1.bat new file mode 100755 index 00000000000..fe949613d7c --- /dev/null +++ b/Master/bin/win32/tlmgr1.bat @@ -0,0 +1,8 @@ +@echo off
+rem tl-w32-starter.bat
+rem universal script starter, batch file part
+rem this program calls the tl-w32-wrapper.texlua
+setlocal
+set ownpath=%~dp0%
+texlua "%ownpath%tl-w32-wrapper.texlua" "%~dpn0" %*
+endlocal
diff --git a/Master/bin/win32/tlmgr2.bat b/Master/bin/win32/tlmgr2.bat deleted file mode 100755 index 3227c961498..00000000000 --- a/Master/bin/win32/tlmgr2.bat +++ /dev/null @@ -1,24 +0,0 @@ -@echo off
-rem Advanced started for tlmgr2 with auto-update
-rem Copyright 2009 by Tomasz M. Trzeciak <t.m.trzeciak@googlemail.com>
-rem Public Domain
-rem
-
-setlocal
-rem TL installation root
-for %%P in ("%~dp0..\..") do set "tlroot=%%~fP"
-
-rem Start tlmgr
-set PERL5LIB=%tlroot%\tlpkg\tlperl\lib
-"%tlroot%\tlpkg\tlperl\bin\perl.exe" "%tlroot%\texmf\scripts\texlive\tlmgr2.pl" %*
-
-rem Check for updater script
-set "updater=%tlroot%\tlpkg\installer\updater.bat"
-if not exist "%updater%" exit /b
-if exist "%updater%.bat" del "%updater%.bat"
-ren "%updater%" updater.bat.bat
-if errorlevel 1 exit /b 1
-
-rem Run updater script
-endlocal & call "%updater%.bat" & exit /b
-
|