From c4544b290497986c5cd99635dce2c241c508a847 Mon Sep 17 00:00:00 2001 From: Matt Rubin Date: Fri, 9 Dec 2016 16:24:26 -0800 Subject: [PATCH] Remove xcpretty installation from script/bootstrap The xcpretty gem is used for CI builds, but not for local Xcode builds. The Travis configuration already ensures that xcpretty is installed, so including it in the main bootstrap script is unnecessary. --- script/bootstrap | 7 ------- 1 file changed, 7 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index 83e5b86..1f3ea6e 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -11,10 +11,8 @@ config () # A whitespace-separated list of executables that must be present and locatable. # These will each be installed through Homebrew if not found. : ${REQUIRED_TOOLS="cmake libssh2 libtool autoconf automake pkg-config"} - : ${REQUIRED_GEMS="xcpretty"} export REQUIRED_TOOLS - export REQUIRED_GEMS } ## @@ -104,11 +102,6 @@ check_deps () sudo ln -s "$brew_prefix/$product" "$destination" done fi - - for gem in $REQUIRED_GEMS - do - gem install "$gem" - done } bootstrap_submodule ()