From d93973a533b03deadb9d980f411903936b9fc2cd Mon Sep 17 00:00:00 2001 From: Matthias Rampke Date: Fri, 12 Aug 2011 00:00:24 +0200 Subject: [PATCH] FIX failure due to set -e when all dependencies are installed --- summon-arm-toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 7aab2cf..eb72945 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -123,7 +123,7 @@ case "$(uname)" in if ! which brew > /dev/null; then echo "homebrew not installed." else - brew install ${DARWINDEPS} | grep -v '^Warning: Formula already installed: ' + brew install ${DARWINDEPS} | (grep -v '^Warning: Formula already installed: ' || true) fi GCCFLAGS="${GCCFLAGS} \ -- 2.25.1