From 3108296441f2408f6187172cad28a611f1e2fcdb Mon Sep 17 00:00:00 2001 From: Sam Ruby Date: Wed, 7 Mar 2001 18:53:13 +0000 Subject: [PATCH] Enable bootstrap to be executed multiple times without prompting on Windows. Does not appear to be a problem on Unix. ---------------------------------------------------------------------- git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268768 13f79535-47bb-0310-9956-ffa450edef68 --- bootstrap.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.bat b/bootstrap.bat index 417f25bba..3b326bb8b 100755 --- a/bootstrap.bat +++ b/bootstrap.bat @@ -20,6 +20,8 @@ echo ... Bootstrapping Ant Distribution 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