Speed up OSX Travis builds

The previous commit made a call to `brew upgrade`, but this tends to take
a very long time. More often than not, the default version in the OSX VM
image is sufficient, so we just need to call `brew install`.
debian-packaging
nirenjan 2020-05-20 01:57:50 -07:00
parent 94a262f13a
commit 84a7e0fe30
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ addons:
# Ensure that gettext is available on OSX
before_script:
- if [ "$TRAVIS_OS_NAME" = osx ]; then brew upgrade libusb gettext || brew install libusb gettext ; fi
- if [ "$TRAVIS_OS_NAME" = osx ]; then brew install libusb gettext ; fi
# Enable parallel make
env: