Skip to content

Commit

Permalink
Fix CI homebrew checks for outdated packages.
Browse files Browse the repository at this point in the history
(cherry picked from commit 8f8689f)
  • Loading branch information
isislovecruft committed Jul 25, 2017
1 parent 7b4585e commit d0cabbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ before_install:

install:
## If we're on OSX use brew to install dependencies (for Linux, see the "apt:" section above)
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade openssl; }; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade libevent; }; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade pkg-config; }; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade openssl; }; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libevent || brew upgrade libevent; }; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated pkg-config || brew upgrade pkg-config; }; fi

script:
- ./autogen.sh
Expand Down

0 comments on commit d0cabbf

Please sign in to comment.