Skip to content

Commit

Permalink
jruby version to match what's in Makefile
Browse files Browse the repository at this point in the history
`Makefile` calls for `jruby` version `1.7.4`,  fixing `bin/logstash` to use the same version.
  • Loading branch information
paulczar committed Jun 24, 2013
1 parent 4b44f71 commit 3b0e66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/logstash
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [ "$?" -eq 0 -a -z "$USE_JRUBY" ] ; then
exec ruby "$basedir/lib/logstash/runner.rb" "$@"
else
# No ruby found, fetch JRuby and run.
jruby="vendor/jar/jruby-complete-1.7.3.jar"
jruby="vendor/jar/jruby-complete-1.7.4.jar"
[ ! -f "$jruby" ] && make build-jruby
exec java -jar "$jruby" "$basedir/lib/logstash/runner.rb" "$@"
fi

0 comments on commit 3b0e66e

Please sign in to comment.