Skip to content

Commit

Permalink
Fixes syntax error in unix runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Mar 11, 2014
1 parent 7f07d44 commit a047057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/scala/tools/ant/templates/tool-unix.tmpl
Expand Up @@ -156,7 +156,7 @@ while [[ $# -gt 0 ]]; do
java_args=("${java_args[@@]}" "$1")
scala_args=("${scala_args[@@]}" "$1")
# respect user-supplied -Dscala.usejavacp
case "$1" in -Dscala.usejavacp) OVERRIDE_USEJAVACP="" esac
case "$1" in -Dscala.usejavacp) OVERRIDE_USEJAVACP="";; esac
shift
;;
-J*)
Expand Down

0 comments on commit a047057

Please sign in to comment.