From 7d1cf823856ba35099e5c6b844695210dcaa9991 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 14 Jan 2019 00:37:20 +0100 Subject: [PATCH] fix the homebrew 1.9 issues on travis-ci, fixes #4254 https://github.com/Homebrew/brew/pull/5517/files --- .travis/install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis/install.sh b/.travis/install.sh index a4f24c1e5..fa524658c 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -4,6 +4,12 @@ set -e set -x if [[ "$(uname -s)" == 'Darwin' ]]; then + # HOMEBREW_NO_AUTO_UPDATE=1 + export HOMEBREW_LOGS=~/brew-logs + export HOMEBREW_TEMP=~/brew-temp + mkdir $HOMEBREW_LOGS + mkdir $HOMEBREW_TEMP + # brew update if [[ "${OPENSSL}" != "0.9.8" ]]; then brew outdated openssl || brew upgrade openssl fi