diff options
-rw-r--r-- | Master/autorun.inf | 2 | ||||
-rwxr-xr-x | Master/install-tl.bat | 24 |
2 files changed, 25 insertions, 1 deletions
diff --git a/Master/autorun.inf b/Master/autorun.inf index c0a341b9cf7..ad896d62cc9 100644 --- a/Master/autorun.inf +++ b/Master/autorun.inf @@ -1,2 +1,2 @@ [autorun] -OPEN=setuptl\tlpmgui.exe +OPEN=install-tl.bat diff --git a/Master/install-tl.bat b/Master/install-tl.bat new file mode 100755 index 00000000000..fca50f077ea --- /dev/null +++ b/Master/install-tl.bat @@ -0,0 +1,24 @@ +@echo off
+
+rem TeX Live Root; ends with backslash
+rem This should also work with UNC names
+set tlroot=%~dp0
+set tldrive=%~d0
+
+%tldrive%
+cd %tlroot%
+
+rem use provided Perl
+
+set PERL5SAVE=%PERL5LIB%
+
+set PERL5LIB=%tlroot%tlpkg\lib\Perl5_lib-TL_inst
+"%tlroot%tlpkg\bin\perl" "%tlroot%install-tl.pl"
+pause Done
+
+rem cleanup in case of start from command-line
+
+set PERL5LIB=%PERL5SAVE%
+set PERL5SAVE=
+set tldrive=
+set tlroot=
|