From e4828078bbc6ceba34a1b923b4c50a31b10b4f08 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 10 Jan 2018 17:36:25 +0100 Subject: [PATCH] travis osx: run brew update first, fixes #3527 suggested as work around on the travis issue about this ruby version issue (wanted: 2.3, having: 2.0). --- .travis/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis/install.sh b/.travis/install.sh index 5bad12264..3136c87cb 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -4,6 +4,7 @@ set -e set -x if [[ "$(uname -s)" == 'Darwin' ]]; then + brew update if [[ "${OPENSSL}" != "0.9.8" ]]; then brew outdated openssl || brew upgrade openssl fi