Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Klass <kissaki@posteo.de>2017-10-15 21:04:47 +0300
committerJan Klass <kissaki@posteo.de>2017-10-15 21:05:45 +0300
commited06886632ed56fbe8f24e292cbd2f583ecee5a6 (patch)
tree91e6c5705cec540ec3acfada02b77be6b756af27 /scripts/travis-ci
parente03989ec0b309c4b1085bd22fbdf5ecc61067f1f (diff)
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
Diffstat (limited to 'scripts/travis-ci')
-rwxr-xr-xscripts/travis-ci/before_install.bash2
1 files changed, 1 insertions, 1 deletions
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