summaryrefslogtreecommitdiffstats
path: root/win/rmd.bat
diff options
context:
space:
mode:
authorescoffon <escoffon>1998-09-30 20:19:00 (GMT)
committerescoffon <escoffon>1998-09-30 20:19:00 (GMT)
commit5e674ce6194b24cecf0ad4ef5aaaf5c790451138 (patch)
treeeaf94488b6b85c12498011c856e827df87fef7e1 /win/rmd.bat
parent482d5ce35c802162132e4eee4a59ff453f45f531 (diff)
downloadtk-5e674ce6194b24cecf0ad4ef5aaaf5c790451138.zip
tk-5e674ce6194b24cecf0ad4ef5aaaf5c790451138.tar.gz
tk-5e674ce6194b24cecf0ad4ef5aaaf5c790451138.tar.bz2
Added support for Win95.
Diffstat (limited to 'win/rmd.bat')
-rw-r--r--win/rmd.bat45
1 files changed, 25 insertions, 20 deletions
diff --git a/win/rmd.bat b/win/rmd.bat
index 745be47..b3af22c 100644
--- a/win/rmd.bat
+++ b/win/rmd.bat
@@ -1,20 +1,25 @@
-@echo off
-rem RCS: @(#) $Id: rmd.bat,v 1.2 1998/09/14 18:23:59 stanton Exp $
-
-if not exist %1 goto end
-
-if %OS% == Windows_NT goto winnt
-
-echo Add support for Win 95 please
-goto end
-
-goto success
-
-:winnt
-rmdir %1 /s /q
-if errorlevel 1 goto end
-
-:success
-echo deleted directory %1
-
-:end
+@echo off
+rem RCS: @(#) $Id: rmd.bat,v 1.3 1998/09/30 20:19:59 escoffon Exp $
+
+if not exist %1\tag.txt goto end
+
+echo Removing directory %1
+
+if "%OS%" == "Windows_NT" goto winnt
+
+cd %1
+if errorlevel 1 goto end
+del *.*
+cd ..
+rmdir %1
+if errorlevel 1 goto end
+goto success
+
+:winnt
+rmdir %1 /s /q
+if errorlevel 1 goto end
+
+:success
+echo deleted directory %1
+
+:end