Skip to content
Snippets Groups Projects
scalaleon 294 B
#!/bin/bash --posix
# Assumes:
#  - ${SCALA_JVM} is on the path
OUT_CLASSES_DIR="../out-classes" # assume we run from scripts directory
SCALA_RUN="scala"
if [[ -d ${OUT_CLASSES_DIR} ]] 
then
    ${SCALA_RUN} -cp ${OUT_CLASSES_DIR} $*
else
    echo Script is designed to run after scalacleon
fi