From dc4e273153f959a8e266318e66ef9bfeaef95da0 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Fri, 24 Sep 2021 17:01:29 -0700 Subject: [PATCH] Fixing homebrew, again. Homebrew apparently requires you to now specify the version of the package you're updating. We previously could just run `brew update openssl` and it would work. Now we must run `brew update openssl@1.1` for the command to succeed. --- ci/macos/prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/macos/prepare.sh b/ci/macos/prepare.sh index c7585e8f75..5e1efa0eef 100755 --- a/ci/macos/prepare.sh +++ b/ci/macos/prepare.sh @@ -6,5 +6,5 @@ set -e set -x brew update -brew upgrade cmake openssl +brew upgrade cmake openssl@1.1 brew install swig bison