From: Francois-Xavier Le Bail Date: Fri, 9 Jan 2015 17:08:44 +0000 (+0100) Subject: Travis: avoid useless lines from 'brew' command in the logs X-Git-Tag: tcpdump-4.7.2~1^2~44 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/87889ba67add1e8abd77fdaacbfd831ee9335bcc Travis: avoid useless lines from 'brew' command in the logs --- diff --git a/.travis.yml b/.travis.yml index 3282c9bc..454637a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,11 +50,11 @@ before_install: - uname -a - date - if [ "$TRAVIS_OS_NAME" = linux ]; then sudo apt-get -qq update; fi - - if [ "$TRAVIS_OS_NAME" = osx ]; then brew update; fi + - if [ "$TRAVIS_OS_NAME" = osx ]; then brew update >/dev/null; fi install: - if [ "$TRAVIS_OS_NAME" = linux ]; then sudo apt-get -qq install libssl-dev libssl0.9.8 libssl1.0.0 libdnet-dev libsmi2-dev; fi - - if [ "$TRAVIS_OS_NAME" = osx ]; then brew install libsmi; fi + - if [ "$TRAVIS_OS_NAME" = osx ]; then brew install libsmi | grep -v '%'; fi before_script: - if [ "$BUILD_LIBPCAP" = true ]; then (cd .. && echo '$ git clone [...] libpcap.git' && git clone --depth=50 --branch=master --quiet git://github.com/the-tcpdump-group/libpcap.git && cd libpcap && ./configure && make); else sudo apt-get -qq install libpcap-dev; fi