From 66f1aa557ab8b17b219dac4a9aa6eb5f0b092f62 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Tue, 4 Jul 2023 21:58:33 +0200 Subject: [PATCH] build: try another way to workaround problem with brew brew update is not mandatory, let's try it as a best effort. --- tests/ci/install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/ci/install.sh b/tests/ci/install.sh index 88bfa17e..7fc1b43b 100755 --- a/tests/ci/install.sh +++ b/tests/ci/install.sh @@ -24,8 +24,7 @@ case "$(uname -s)" in ;; Darwin) # See https://github.com/Homebrew/homebrew-cask/issues/150323 - unset HOMEBREW_NO_INSTALL_FROM_API - brew update > /dev/null + brew update > /dev/null || true brew bundle --file=- <<-EOS brew "automake" brew "autoconf" -- 2.39.5