bodewig 01/12/11 06:02:51
Modified: . bootstrap.sh bootstrap.bat
Log:
Don't keep old testcases around when doing a bootstrap build.
Revision Changes Path
1.59 +2 -2 jakarta-ant/bootstrap.sh
Index: bootstrap.sh
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.sh,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- bootstrap.sh 2001/12/10 09:37:07 1.58
+++ bootstrap.sh 2001/12/11 14:02:51 1.59
@@ -72,8 +72,8 @@
rm -r bootstrap
fi
-if [ -d "build/classes" ] ; then
- rm -r build/classes
+if [ -d "build" ] ; then
+ rm -r build
fi
CLASSPATH=lib/crimson.jar:${CLASSPATH}
1.45 +2 -2 jakarta-ant/bootstrap.bat
Index: bootstrap.bat
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.bat,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- bootstrap.bat 2001/11/22 16:16:46 1.44
+++ bootstrap.bat 2001/12/11 14:02:51 1.45
@@ -20,8 +20,8 @@
if "%OS%" == "Windows_NT" if exist bootstrap\nul rmdir/s/q bootstrap
if not "%OS%" == "Windows_NT" if exist bootstrap\nul deltree/y bootstrap
-if "%OS%" == "Windows_NT" if exist build\classes\nul rmdir/s/q
build\classes
-if not "%OS%" == "Windows_NT" if exist build\classes\nul deltree/y
build\classes
+if "%OS%" == "Windows_NT" if exist build\nul rmdir/s/q build
+if not "%OS%" == "Windows_NT" if exist build\nul deltree/y build
SET LOCALCLASSPATH=lib\crimson.jar
for %%i in (lib\optional\*.jar) do call src\script\lcp.bat %%i
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>