summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/tlmenu.bat
diff options
context:
space:
mode:
authorSiep Kroonenberg <siepo@cybercomm.nl>2011-06-09 08:46:22 +0000
committerSiep Kroonenberg <siepo@cybercomm.nl>2011-06-09 08:46:22 +0000
commit0dc2861e5920070c221367e8091c9bb77b88f216 (patch)
treedd731504b22ce45b2ab46aaa4feb7d5754585398 /Master/tlpkg/installer/tlmenu.bat
parent09a9609daad2ce6b88a53b48a68467ff6baf9481 (diff)
Removed some no longer relevant files
git-svn-id: svn://tug.org/texlive/trunk@22882 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/tlmenu.bat')
-rwxr-xr-xMaster/tlpkg/installer/tlmenu.bat61
1 files changed, 0 insertions, 61 deletions
diff --git a/Master/tlpkg/installer/tlmenu.bat b/Master/tlpkg/installer/tlmenu.bat
deleted file mode 100755
index eec8a4e17fe..00000000000
--- a/Master/tlpkg/installer/tlmenu.bat
+++ /dev/null
@@ -1,61 +0,0 @@
-@ECHO OFF
-
-rem Sample main menu
-rem Usage: edit and copy to the root of the installation.
-
-rem For a custom submenu for the tray menu, see tl-tray-menu-custom.bat.
-
-SETLOCAL ENABLEEXTENSIONS
-SETLOCAL ENABLEDELAYEDEXPANSION
-
-set tlroot=%~dp0
-path %tlroot%bin\win32;%path%
-
-:menuloop
-
-set ans=
-cls
-
-echo === TeX Live Menu ===
-echo.
-echo 1 TeX Live command prompt
-echo 2 Managing the installation
-if exist %tlroot%bin\win32\texworks.exe (
- echo 3 TeXWorks
-)
-
-echo Q Quit
-echo.
-set /p ans="Make a choice: "
-
-if "%ans%"=="1" (
- cmd /k "set prompt=TL $P$G & cls"
- exit
-)
-
-if "%ans%"=="2" (
- echo Starting tlmgr
- echo Please be patient
- wscript %tlroot%bin\win32\tlmgr-gui.vbs
- exit
-)
-
-if "%ans%"=="3" (
- if not exist %tlroot%bin\win32\texworks.exe (
- echo TeXworks not available
- goto :menuloop
- )
- start texworks
- exit
-rem goto :eof
-)
-
-if "%ans%"=="Q" (
- exit
-)
-
-if "%ans%"=="q" (
- exit
-)
-
-goto :menuloop