From 4ed944c4b1978f182995167584aef68cb61561a6 Mon Sep 17 00:00:00 2001 From: Greg Tucker Date: Wed, 30 Oct 2019 11:16:49 -0700 Subject: [PATCH] build: Fix travis osx issue with brew update Bug in Homebrew auto-update causes post-update install to use the old environment. Change-Id: I03e20d899f558f71579dfd4be3f96903b77f1998 Signed-off-by: Greg Tucker --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 0540350..142a7cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -97,6 +97,7 @@ before_install: before_script: - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -q update; fi - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install yasm; fi + - if [ $TRAVIS_OS_NAME = osx ]; then brew update; fi - if [ $TRAVIS_OS_NAME = osx ]; then brew install yasm; fi script: