From 78418e17e90fb06a4a0a09bbef88d36428d1f938 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 8 Oct 2018 07:13:05 +0200 Subject: CI/travis/macOS: silence non-error messages from homebrew Reduces the log size by 11% (1100/9670 lines). --- ci/before_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ci') diff --git a/ci/before_install.sh b/ci/before_install.sh index 6610d7d3d5..2a8eb9ce1f 100755 --- a/ci/before_install.sh +++ b/ci/before_install.sh @@ -8,9 +8,9 @@ if [[ "${CI_TARGET}" == lint ]]; then fi if [[ "${TRAVIS_OS_NAME}" == osx ]]; then - brew update + >/dev/null brew update echo "Upgrade Python 3" - brew upgrade python + >/dev/null brew upgrade python fi echo 'python info:' -- cgit