summaryrefslogtreecommitdiff
path: root/ant-test-nsc.sh
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-09-01 09:21:27 +0000
committermichelou <michelou@epfl.ch>2005-09-01 09:21:27 +0000
commitd527c775dba1e2f4a2609cabfc0083e5e4374532 (patch)
treecdff4af8bb7ab24611403bdb9957923ceaf10dc8 /ant-test-nsc.sh
parent5105a3cd57f03b3a0bbbcb68dc5774bb3bcd21a0 (diff)
downloadscala-d527c775dba1e2f4a2609cabfc0083e5e4374532.tar.gz
scala-d527c775dba1e2f4a2609cabfc0083e5e4374532.tar.bz2
scala-d527c775dba1e2f4a2609cabfc0083e5e4374532.zip
- corrected Ant command line.
Diffstat (limited to 'ant-test-nsc.sh')
-rwxr-xr-xant-test-nsc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ant-test-nsc.sh b/ant-test-nsc.sh
index a88f682b03..0483f601d3 100755
--- a/ant-test-nsc.sh
+++ b/ant-test-nsc.sh
@@ -33,7 +33,7 @@ ANT_BUILDFILE=concrete-$ANT_CONFIGFILE
ANT_EXCLFILE=developer/${USER}/test-nsc-excludes.xml
# for debugging your classpath
-#echo $CLASSPATH
+#echo CLASSPATH=$CLASSPATH
if [ -f "$ANT_EXCLFILE" ]; then
$SED -e "s#userExcludes\ \"\"#userExcludes\ SYSTEM\ \"$ANT_EXCLFILE\"#" \
< $ANT_CONFIGFILE > $ANT_BUILDFILE;
@@ -41,7 +41,7 @@ if [ -f "$ANT_EXCLFILE" ]; then
$CP $ANT_CONFIGFILE $ANT_BUILDFILE;
fi
-CLASSPATH="$CLASSPATH" $ANT_CMD $ANT_OPTS -f "$ANT_BUILDFILE" $*
+CLASSPATH="$CLASSPATH" $ANT_CMD -f "$ANT_BUILDFILE" $*
$RM "$ANT_BUILDFILE"
##############################################################################