summaryrefslogtreecommitdiff
path: root/ant-build-nsc.sh
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-09-01 09:22:02 +0000
committermichelou <michelou@epfl.ch>2005-09-01 09:22:02 +0000
commitae5a9701ae8e5db9ba02fb6c95f72ce059e78b53 (patch)
treec542d68b0442c645d7997f62eb173b07cab63e02 /ant-build-nsc.sh
parentd527c775dba1e2f4a2609cabfc0083e5e4374532 (diff)
downloadscala-ae5a9701ae8e5db9ba02fb6c95f72ce059e78b53.tar.gz
scala-ae5a9701ae8e5db9ba02fb6c95f72ce059e78b53.tar.bz2
scala-ae5a9701ae8e5db9ba02fb6c95f72ce059e78b53.zip
- uncommented 'rm' command.
Diffstat (limited to 'ant-build-nsc.sh')
-rwxr-xr-xant-build-nsc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ant-build-nsc.sh b/ant-build-nsc.sh
index e67316df63..f95e8a1493 100755
--- a/ant-build-nsc.sh
+++ b/ant-build-nsc.sh
@@ -30,7 +30,7 @@ ANT_BUILDFILE=concrete-$ANT_CONFIGFILE
ANT_EXCLFILE=developer/${USER}/build-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;
@@ -39,6 +39,6 @@ if [ -f "$ANT_EXCLFILE" ]; then
fi
CLASSPATH="$CLASSPATH" $ANT_CMD -f "$ANT_BUILDFILE" $*
-#$RM "$ANT_BUILDFILE"
+$RM "$ANT_BUILDFILE"
##############################################################################