Skip to content
Snippets Groups Projects
Commit b53033a0 authored by Philippe Suter's avatar Philippe Suter
Browse files

♪♬♩ The Greatest Invention Since the Scala Compiler: a Bash Script !

parent ac7f1e45
No related branches found
No related tags found
No related merge requests found
funcheck 0 → 100755
#!/bin/bash
runner="./scalac-funcheck"
newargs=""
for arg in $@
do
if [ -e ${arg} ]
then
newargs="${newargs} ${arg}"
else
newargs="${newargs} -P:funcheck:${arg}"
fi
done
if [ -e ${runner} ]
then
${runner} ${newargs}
exit 0
else
echo "${runner} not found. Have you run 'sbt all' ?"
exit 1
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment