From abad3fc095f09e33a481a7eaa3e555dbc1efd4a2 Mon Sep 17 00:00:00 2001 From: Anthony Bilinski Date: Sun, 24 Jan 2021 17:03:26 -0800 Subject: [PATCH] fix(travis): Don't call brew update in Travis CI Brew disabled updating from shallow clones: https://github.com/Homebrew/brew/pull/9383 The update is also uneeded since our .travis.yml already has `update: true` for the brew extension. --- .travis/cirp/install.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis/cirp/install.sh b/.travis/cirp/install.sh index 2fafe5fc1..c88f90d9e 100644 --- a/.travis/cirp/install.sh +++ b/.travis/cirp/install.sh @@ -5,8 +5,6 @@ # Get Python >=3.5 if [ "$TRAVIS_OS_NAME" == "osx" ] then - brew update - # make sha256sum available export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"