From cb0294790afa22d5a1f5f0c8404a00db6600dd6a Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 6 Feb 2017 14:33:06 +0800 Subject: [PATCH] brew.sh --- installer/appbundle/Helper/brew.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/appbundle/Helper/brew.sh b/installer/appbundle/Helper/brew.sh index e3af6498..5a66f15c 100755 --- a/installer/appbundle/Helper/brew.sh +++ b/installer/appbundle/Helper/brew.sh @@ -1,10 +1,10 @@ -#!/bin/sh -x +#!/bin/sh -xu # brew requires Command Line Tools for Xcode xcode-select --print-path || sudo xcode-select --install # install brew if necessary -brew info || /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +brew info || ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" # update brew package index and update all packages brew update && brew upgrade