From 7bdf9ddd5e1504d2f37f262483093bac3420269a Mon Sep 17 00:00:00 2001 From: Seth Call Date: Mon, 4 Apr 2016 09:41:04 -0500 Subject: [PATCH] * dont hide output --- pb/build_rprotoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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