rubys 01/03/07 10:53:16
Modified: . bootstrap.bat Log: Enable bootstrap to be executed multiple times without prompting on Windows. Does not appear to be a problem on Unix. ---------------------------------------------------------------------- Revision Changes Path 1.34 +2 -0 jakarta-ant/bootstrap.bat Index: bootstrap.bat =================================================================== RCS file: /home/cvs/jakarta-ant/bootstrap.bat,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- bootstrap.bat 2001/03/04 13:35:47 1.33 +++ bootstrap.bat 2001/03/07 18:53:13 1.34 @@ -20,6 +20,8 @@ if "%OS%" == "Windows_NT" if exist bootstrap rmdir/s/q bootstrap if not "%OS%" == "Windows_NT" if exist bootstrap deltree/y bootstrap +if "%OS%" == "Windows_NT" if exist build\classes rmdir/s/q build\classes +if not "%OS%" == "Windows_NT" if exist build\classes deltree/y build\classes SET LOCALCLASSPATH=lib\crimson.jar;lib\jaxp.jar;lib\optional\junit.jar
