diff options
author | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-07-06 23:13:37 +0000 |
---|---|---|
committer | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-07-06 23:13:37 +0000 |
commit | 7feea261bf7f5a8afa8241dddf6c30e30cf8fde4 (patch) | |
tree | 41dcc2e2cd46f405c5084824d8c57c32080b048d | |
parent | b51040275dce020b30b347d6459afab59f150511 (diff) |
removed Windows NT check, didn't work well with 4NT shell
git-svn-id: svn://tug.org/texlive/trunk@14162 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/install-tl.bat | 10 | ||||
-rwxr-xr-x | Master/tl-portable.bat | 10 |
2 files changed, 0 insertions, 20 deletions
diff --git a/Master/install-tl.bat b/Master/install-tl.bat index 494835cd6ba..fe1c4652e24 100755 --- a/Master/install-tl.bat +++ b/Master/install-tl.bat @@ -8,10 +8,6 @@ rem First, check if this is DOS based system rem in DOS '^' is just a normal character
if not ^x==x goto DOS
-rem Now check for Windows NT which is also not supported
-ver | find "NT"
-if not errorlevel 1 goto WinNT
-
rem Abort if we are running from UNC path
if %~d0==\\ goto UNC
@@ -60,12 +56,6 @@ echo You can use pushd/popd commands for temporary mapping. pause
exit /b 1
-:WinNT
-echo Windows NT is not supported. Sorry.
-echo Windows 2000 or newer is required.
-pause
-exit /b 1
-
:DOS
echo DOS and Windows 9x systems are not supported. Sorry.
echo Windows 2000 or newer is required.
diff --git a/Master/tl-portable.bat b/Master/tl-portable.bat index db44978fc49..786fefb375e 100755 --- a/Master/tl-portable.bat +++ b/Master/tl-portable.bat @@ -6,10 +6,6 @@ rem First, check if this is DOS based system rem in DOS '^' is just a normal character if not ^x==x goto DOS -rem Now check for Windows NT which is also not supported -ver | find "NT" -if not errorlevel 1 goto WinNT - rem Abort if we are running from UNC path if %~d0==\\ goto UNC @@ -70,12 +66,6 @@ echo You can use pushd/popd commands for temporary mapping. pause exit /b 1 -:WinNT -echo Windows NT is not supported. Sorry. -echo Windows 2000 or newer is required. -pause -exit /b 1 - :DOS echo DOS and Windows 9x systems are not supported. Sorry. echo Windows 2000 or newer is required. |