From 921d14d947108dc6e8f628ffe3a179e20005928e Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Mon, 16 Oct 2017 19:29:35 +0200 Subject: Added 'brew update' to travisci macos build script There's currently an error in the build on installing the dependencies from homebrew. From the comments here https://github.com/Homebrew/brew/issues/3299, looks like this might solve it. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 233190c..b81ea41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,7 @@ addons: - libpango1.0-0 before_install: + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gtk+3; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install portaudio; fi -- cgit v1.2.3