diff options
author | mdejong <mdejong> | 2001-09-08 22:34:42 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-09-08 22:34:42 (GMT) |
commit | 772a77c9e5f050601586a1ebcc79b26848a14eae (patch) | |
tree | 7c3a97598dc964649bd075fd6f00caebcfb4db25 | |
parent | 7a8027f2e837745684cb6bb0b8eb279b19ccf6c3 (diff) | |
download | tk-772a77c9e5f050601586a1ebcc79b26848a14eae.zip tk-772a77c9e5f050601586a1ebcc79b26848a14eae.tar.gz tk-772a77c9e5f050601586a1ebcc79b26848a14eae.tar.bz2 |
* win/mkd.bat:
* win/rmd.bat:
Apply binary property (cvs admin -kb) to files and convert
to CRLF linefeed format to fix the VC++ build. [Tcl Bug #219409]
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | win/mkd.bat | 43 | ||||
-rw-r--r-- | win/rmd.bat | 51 |
3 files changed, 55 insertions, 46 deletions
@@ -1,3 +1,10 @@ +2001-09-08 Mo DeJong <mdejong@users.sourceforge.net> + + * win/mkd.bat: + * win/rmd.bat: + Apply binary property (cvs admin -kb) to files and convert + to CRLF linefeed format to fix the VC++ build. [Tcl Bug #219409] + 2001-08-29 Jeff Hobbs <jeffh@ActiveState.com> * tests/menu.test: diff --git a/win/mkd.bat b/win/mkd.bat index 0f2ae76..f9f3eaf 100644 --- a/win/mkd.bat +++ b/win/mkd.bat @@ -1,21 +1,22 @@ -@echo off -rem RCS: @(#) $Id: mkd.bat,v 1.3 1998/09/30 20:19:00 escoffon Exp $ - -if exist %1\tag.txt goto end - -if "%OS%" == "Windows_NT" goto winnt - -md %1 -if errorlevel 1 goto end - -goto success - -:winnt -md %1 -if errorlevel 1 goto end - -:success -echo TAG >%1\tag.txt -echo created directory %1 - -:end +@echo off
+rem RCS: @(#) $Id: mkd.bat,v 1.4 2001/09/08 22:34:42 mdejong Exp $
+
+if exist %1\tag.txt goto end
+
+if "%OS%" == "Windows_NT" goto winnt
+
+md %1
+if errorlevel 1 goto end
+
+goto success
+
+:winnt
+md %1
+if errorlevel 1 goto end
+
+:success
+echo TAG >%1\tag.txt
+echo created directory %1
+
+:end
+
diff --git a/win/rmd.bat b/win/rmd.bat index b3af22c..2669f37 100644 --- a/win/rmd.bat +++ b/win/rmd.bat @@ -1,25 +1,26 @@ -@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 +@echo off
+rem RCS: @(#) $Id: rmd.bat,v 1.4 2001/09/08 22:34:42 mdejong 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
+
|