diff options
author | Isis Lovecruft <isis@torproject.org> | 2017-07-24 18:26:36 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2017-07-25 00:57:32 +0000 |
commit | f18205f2e193773cb904823a71e24518dc26d521 (patch) | |
tree | 97f96cc25e48966e64db3e19e5d9ffcc7d77f4aa /.travis.yml | |
parent | cdb3e17ba279402c3a5bf7e8baf6fe7a07311770 (diff) | |
download | tor-f18205f2e193773cb904823a71e24518dc26d521.tar.gz tor-f18205f2e193773cb904823a71e24518dc26d521.zip |
Fix CI homebrew checks for outdated packages.
(cherry picked from commit 8f8689f70235dc19cbc5092ea148af5772a9cdc3)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 8e0bb2afe2..6ce2b87a99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,9 +66,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 ## Install the nightly channels of rustc and cargo and setup our toolchain environment - sh rustup.sh -y --default-toolchain nightly - source $HOME/.cargo/env |