aboutsummaryrefslogtreecommitdiff
path: root/bootstrap_scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2016-03-06 19:13:24 -0500
committerJan Christopher Vogt <oss.nsp@cvogt.org>2016-03-06 19:13:24 -0500
commit7804a00216486988af5272d75239fba078cfb09e (patch)
treea97aef8fb2bac74d9814017f4f6fddbbc8485771 /bootstrap_scala
parent5488e70259e41884d0739ba56e5fecea46aab50a (diff)
parentd5b43bc0eaedfba1c5be6bff1673b426af030c81 (diff)
downloadcbt-7804a00216486988af5272d75239fba078cfb09e.tar.gz
cbt-7804a00216486988af5272d75239fba078cfb09e.tar.bz2
cbt-7804a00216486988af5272d75239fba078cfb09e.zip
Merge pull request #55 from cvogt/circleci
Circleci
Diffstat (limited to 'bootstrap_scala')
-rwxr-xr-xbootstrap_scala/bootstrap_scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap_scala/bootstrap_scala b/bootstrap_scala/bootstrap_scala
index 7bc1d31..b004c8d 100755
--- a/bootstrap_scala/bootstrap_scala
+++ b/bootstrap_scala/bootstrap_scala
@@ -18,7 +18,7 @@ mkdir -p $CLASSES
if [ ! -f $CACHE$COMPILER_JAR ] || [ ! -f $CACHE$LIBRARY_JAR ] || [ ! -f $CACHE$REFLECT_JAR ]\
|| [ ! -f $CACHE$XML_JAR ] || [ $DIR/BootstrapScala.java -nt $CLASSES/BootstrapScala.class ] || [ $DIR/Dependency.java -nt $CLASSES/Dependency.class ]
then
- echo "Recompiling CBT BootstrapScala.java" 1>&2
+ echo "Compiling cbt/bootstrap_scala" 1>&2
$JAVAC -d $CLASSES $DIR/BootstrapScala.java $DIR/Dependency.java
java -cp $CLASSES BootstrapScala $1 $CACHE
else