From aea2b0caa4a3038731e425dfa8785b36ccfc60ef Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 16 Mar 2001 09:22:36 +0000 Subject: [PATCH] Make sure bootstrap.sh runs in a clean environment by removing build/classes. bootstrap.bat already had this. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268849 13f79535-47bb-0310-9956-ffa450edef68 --- bootstrap.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index ccfa6421c..4435103df 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -41,6 +41,10 @@ if [ -d "bootstrap" ] ; then rm -r bootstrap fi +if [ -d "build/classes" ] ; then + rm -r build/classes +fi + CLASSPATH=lib/crimson.jar:lib/jaxp.jar:${CLASSPATH} DIRLIBS=lib/optional/*.jar