Following the documentation, I ran into issues getting bootstrap.sh to work how I thought it should. Also found small bug in doc file. The following patch would fix these small nits.
-Matthew diff -uNr jakarta-ant-orig/bootstrap.sh jakarta-ant/bootstrap.sh --- jakarta-ant-orig/bootstrap.sh Tue Jul 11 12:46:11 2000 +++ jakarta-ant/bootstrap.sh Wed Jul 12 10:18:47 2000 @@ -1,8 +1,14 @@ #!/bin/sh + if [ -f $HOME/.antrc ] ; then . $HOME/.antrc fi + +if ["$ANT_HOME" = ""] ; then + ANT_HOME=`pwd` +fi +export ANT_HOME SRCDIR=src/main/org/apache/tools CLASSDIR=classes diff -uNr jakarta-ant-orig/docs/index.html jakarta-ant/docs/index.html --- jakarta-ant-orig/docs/index.html Wed Jul 12 10:10:49 2000 +++ jakarta-ant/docs/index.html Wed Jul 12 10:18:40 2000 @@ -3252,7 +3252,7 @@ there.</p> <h2><a name="feedback">Feedback</a></h2> <p>To provide feedback on this software, please subscribe to the Ant Development -Mail List <a href="mailto:([EMAIL PROTECTED]">([EMAIL PROTECTED] ta.apache.org</a>)</p> +Mail List (<a href="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED] .apache.org</a>)</p> <hr> <p align="center">Copyright � 2000 Apache Software Foundation. All rights Reserved.</p>
