From 235c2994ec3d95bfcdea58b1d2c764293301e02b 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 5bad12264..5b52cbcec 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