diff --git a/pb/build_rprotoc b/pb/build_rprotoc index e019cc519..f4c5555b1 100755 --- a/pb/build_rprotoc +++ b/pb/build_rprotoc @@ -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