You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.sh 261 B

12345678910111213141516
  1. #!/bin/sh
  2. REALANTHOME=$ANT_HOME
  3. ANT_HOME=.
  4. export ANT_HOME
  5. if test ! -f lib/ant.jar -o ! -x bin/ant -o ! -x bin/antRun ; then
  6. ./bootstrap.sh
  7. fi
  8. if [ "$REALANTHOME" != "" ] ; then
  9. ANT_INSTALL="-Dant.install $REALANTHOME"
  10. fi
  11. bin/ant $ANT_INSTALL $*