Skip to content

Commit

Permalink
JRUBY-5472: JRuby bash script no longer supports -X-C and similar opt…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
BanzaiMan committed Feb 10, 2011
1 parent 5434c72 commit 217fc9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/jruby.bash
Expand Up @@ -235,7 +235,7 @@ do
if expr "$val" : '.*[.]' > /dev/null; then
java_args=("${java_args[@]}" "-Djruby.${val}")
else
ruby_args=("${ruby_args[@]}" "-X")
ruby_args=("${ruby_args[@]}" "-X${val}")
fi
;;
# Match switches that take an argument
Expand Down
2 changes: 1 addition & 1 deletion bin/jruby.sh
Expand Up @@ -193,7 +193,7 @@ do
if expr "$val" : '.*[.]' > /dev/null; then
java_args="${java_args} -Djruby.${val}"
else
ruby_args="${ruby_args} -X"
ruby_args="${ruby_args} -X${val}"
fi
;;
# Match switches that take an argument
Expand Down

0 comments on commit 217fc9b

Please sign in to comment.