aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-08 07:13:05 +0200
committerJustin M. Keyes <justinkz@gmail.com>2018-10-13 23:34:49 +0200
commit78418e17e90fb06a4a0a09bbef88d36428d1f938 (patch)
tree7f21f2ec8e632e27696c2e8496120f5577c6a8f6
parent3d2493a3fd724edc382922e91147f893dcb0f904 (diff)
downloadrneovim-78418e17e90fb06a4a0a09bbef88d36428d1f938.tar.gz
rneovim-78418e17e90fb06a4a0a09bbef88d36428d1f938.tar.bz2
rneovim-78418e17e90fb06a4a0a09bbef88d36428d1f938.zip
CI/travis/macOS: silence non-error messages from homebrew
Reduces the log size by 11% (1100/9670 lines).
-rwxr-xr-xci/before_install.sh4
1 files changed, 2 insertions, 2 deletions
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:'