Browse Source

make sure that bootstrap builds bin directory

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267593 13f79535-47bb-0310-9956-ffa450edef68
master
Sam Ruby 25 years ago
parent
commit
e1104262ad
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      bootstrap.bat
  2. +1
    -1
      bootstrap.sh

+ 1
- 1
bootstrap.bat View File

@@ -37,7 +37,7 @@ rem Copy all the property/manifest files into the temp directory
echo ** BUILDING ANT DISTRIBUTION

rem Build the distribution using the newly compiled classes in the temp directory
java -classpath "%C%" org.apache.tools.ant.Main jar %1 %2 %3 %4 %5
java -classpath "%C%" org.apache.tools.ant.Main main %1 %2 %3 %4 %5

echo ** CLEANING UP BUILD DIRECTORIES



+ 1
- 1
bootstrap.sh View File

@@ -18,7 +18,7 @@ javac -d ${CLASSDIR} ${SRCDIR}/taskdefs/*.java
cp src/main/org/apache/tools/ant/taskdefs/defaults.properties ${CLASSDIR}/org/apache/tools/ant/taskdefs
cp src/main/org/apache/tools/ant/parser.properties ${CLASSDIR}/org/apache/tools/ant

java org.apache.tools.ant.Main jar
java org.apache.tools.ant.Main main
java org.apache.tools.ant.Main clean

if ! test -e bin; then mkdir bin; fi


Loading…
Cancel
Save