diff options
author | Alexander Polcyn <apolcyn@google.com> | 2017-02-02 13:59:05 -0800 |
---|---|---|
committer | Alexander Polcyn <apolcyn@google.com> | 2017-02-02 13:59:05 -0800 |
commit | 7f43bb25deb3a12b4adcf3b8c7079bcca440cf7b (patch) | |
tree | 8e4b944cbbc3c583cb315922bf76fd343ca5689a | |
parent | 370e57a228abb542a51967cb330e4591b6393a64 (diff) |
clean up bundle install wrapper and set SYSTEM within it
-rwxr-xr-x | tools/run_tests/helper_scripts/bundle_install_wrapper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/helper_scripts/bundle_install_wrapper.sh b/tools/run_tests/helper_scripts/bundle_install_wrapper.sh index 8a66bc6090..d56afad893 100755 --- a/tools/run_tests/helper_scripts/bundle_install_wrapper.sh +++ b/tools/run_tests/helper_scripts/bundle_install_wrapper.sh @@ -31,11 +31,11 @@ set -ex -export GRPC_CONFIG=${CONFIG:-opt} - # change to grpc repo root cd $(dirname $0)/../../.. +SYSTEM=`uname | cut -f 1 -d_` + if [ "$SYSTEM" == "Darwin" ] ; then # Workaround for crash during bundle install # See suggestion in https://github.com/bundler/bundler/issues/3692 |