From ed06886632ed56fbe8f24e292cbd2f583ecee5a6 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Sun, 15 Oct 2017 20:04:47 +0200 Subject: [PATCH] Fix travis OSX build Using brew to install now fails because of an incompatible ruby version. Update brew before installing a package to work around this. https://github.com/travis-ci/travis-ci/issues/8552 --- scripts/travis-ci/before_install.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/travis-ci/before_install.bash b/scripts/travis-ci/before_install.bash index 7e83fcfce..a8b99701b 100755 --- a/scripts/travis-ci/before_install.bash +++ b/scripts/travis-ci/before_install.bash @@ -57,7 +57,7 @@ if [ "${TRAVIS_OS_NAME}" == "linux" ]; then exit 1 fi elif [ "${TRAVIS_OS_NAME}" == "osx" ]; then - brew install qt5 libogg libvorbis flac libsndfile protobuf openssl ice + brew update && brew install qt5 libogg libvorbis flac libsndfile protobuf openssl ice else exit 1 fi