Changeset 1675 for trunk/ProjectFortress/ant
- Timestamp:
- 05/19/08 18:20:18 (18 months ago)
- Files:
-
- 1 modified
-
trunk/ProjectFortress/ant (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/ant
r1674 r1675 33 33 if [ "x$ANT_HOME" != "x" ]; then 34 34 if [ -x "$ANT_HOME/bin/ant" ]; then 35 echo $ANT_HOME/bin/ant35 echo "$ANT_HOME/bin/ant" 36 36 return 37 37 else … … 43 43 44 44 # Otherwise use whatever is in $PATH 45 result= `which ant 2>/dev/null`45 result="`which ant 2>/dev/null`" 46 46 if [ -z "$result" ]; then 47 47 echo "Could not find ant. You need to install it. See http://ant.apache.org/ for details." >&2 … … 52 52 } 53 53 54 ant_exec= `find_ant`54 ant_exec="`find_ant`" 55 55 n=$? 56 56 if [ $n -ne 0 ]; then 57 57 exit $n 58 58 fi 59 $ant_exec-noclasspath -lib third_party/junit "$@"59 "$ant_exec" -noclasspath -lib third_party/junit "$@"

