summaryrefslogtreecommitdiff
path: root/travis.sh
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2015-11-29 10:34:31 -0800
committerAlan Antonuk <alan.antonuk@gmail.com>2015-11-29 10:34:31 -0800
commite1cb55e69521dd862217ef1c6aed64897a11ede8 (patch)
treee1149702941397f92fee1dd48fc82002e921d328 /travis.sh
parentc451311d505de101f267f9c0f48f6c93ad59b9c6 (diff)
downloadrabbitmq-c-e1cb55e69521dd862217ef1c6aed64897a11ede8.tar.gz
CI: ignore output of brew update in travis build.quiet_brew
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh
index 1096962..f20d20b 100755
--- a/travis.sh
+++ b/travis.sh
@@ -40,7 +40,8 @@ set -x # echo commands.
case $TRAVIS_OS_NAME in
osx)
- brew update -quiet
+ # This prints out a long list of updated packages, which isn't useful.
+ brew update > /dev/null
brew install popt
;;
esac