summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-10-16 19:29:35 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-10-16 19:29:35 +0200
commit921d14d947108dc6e8f628ffe3a179e20005928e (patch)
treec91b5c892519418ccbf3fc68e2fd15b4bfc2ce43 /.travis.yml
parent17b3c1e4231288056b794ab22771d2b3fb423984 (diff)
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.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml1
1 files changed, 1 insertions, 0 deletions
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