mirror of
https://github.com/elastic/logstash.git
synced 2025-04-20 20:57:27 -04:00
10 lines
279 B
Bash
Executable file
10 lines
279 B
Bash
Executable file
#!/bin/sh
|
|
|
|
unset CDPATH
|
|
. "$(cd `dirname $0`/..; pwd)/bin/logstash.lib.sh"
|
|
setup
|
|
|
|
# use faster starting JRuby options see https://github.com/jruby/jruby/wiki/Improving-startup-time
|
|
export JRUBY_OPTS="${JRUBY_OPTS---dev}"
|
|
|
|
ruby_exec "${LOGSTASH_HOME}/lib/bootstrap/rspec.rb" "$@"
|