Commit 261be130 authored by Dominik Charousset's avatar Dominik Charousset

show more warnings

parent 723689ae
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
if [[ $# -eq 0 ]] ; then if [[ $# -eq 0 ]] ; then
for i in *.scala; do for i in *.scala; do
echo "compile \"$i\"" echo "compile \"$i\""
scalac -cp $AKKA_LIBS "$i" scalac -unchecked -cp $AKKA_LIBS "$i"
done done
elif [[ $# -eq 1 ]] ; then elif [[ $# -eq 1 ]] ; then
echo "compile \"$1.scala\"" echo "compile \"$1.scala\""
scalac -cp $AKKA_LIBS "$1.scala" scalac -unchecked -cp $AKKA_LIBS "$1.scala"
fi fi
echo done echo done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment