* dont hide output
This commit is contained in:
parent
40df9eed6f
commit
7bdf9ddd5e
|
|
@ -5,10 +5,10 @@
|
|||
RUBY_OUT=$TARGET/ruby
|
||||
|
||||
# we exit with 0; treat ruby as optional at the moment
|
||||
command -v "bundle" >/dev/null 2>&1 || { echo >&2 "bundle is required but not installed. Skipping ruby protocol buffers."; exit 0; }
|
||||
command -v "bundle" || { echo >&2 "bundle is required but not installed. Skipping ruby protocol buffers."; exit 0; }
|
||||
|
||||
# creates a bin folder with 'rprotoc' command inside
|
||||
bundle install --binstubs > /dev/null
|
||||
bundle install --binstubs
|
||||
|
||||
# die on error at this point
|
||||
set -e
|
||||
|
|
|
|||
Loading…
Reference in New Issue