Browse Source

Don't keep old testcases around when doing a bootstrap build.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270116 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
2b673beb3f
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      bootstrap.bat
  2. +2
    -2
      bootstrap.sh

+ 2
- 2
bootstrap.bat View File

@@ -20,8 +20,8 @@ echo ... Bootstrapping Ant Distribution

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


+ 2
- 2
bootstrap.sh View File

@@ -72,8 +72,8 @@ if [ -d "bootstrap" ] ; then
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}


Loading…
Cancel
Save