mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Fix syntax
This commit is contained in:
parent
8c58a4d7c6
commit
eabfbbf859
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ export RUBYLIB="$basedir/lib"
|
|||
# help logstash run.
|
||||
setup() {
|
||||
if [ -d "$basedir/.git" ] ; then
|
||||
if [ $1 = "jruby" ] ; then
|
||||
if [ "$1" = "jruby" ] ; then
|
||||
RUBY=${RUBY=jruby}
|
||||
else
|
||||
RUBY=${RUBY=$(ruby -e 'puts RUBY_ENGINE')}
|
||||
|
@ -33,7 +33,7 @@ setup() {
|
|||
fi
|
||||
}
|
||||
|
||||
if [ $1 = "deps" ] ; then
|
||||
if [ "$1" = "deps" ] ; then
|
||||
program="$basedir/gembag.rb"
|
||||
set -- "$basedir/logstash.gemspec"
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue