From a65ce7a28c741be61efac0a1082f04e0c8311da5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Thu, 3 Oct 2024 18:28:30 +0200 Subject: [PATCH] Formula qt5 was renamed to qt@5 --- ci/prepare/macos/prepare.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/prepare/macos/prepare.sh b/ci/prepare/macos/prepare.sh index b66fedaac..da5ad9cb5 100755 --- a/ci/prepare/macos/prepare.sh +++ b/ci/prepare/macos/prepare.sh @@ -1,7 +1,7 @@ #!/bin/bash set -euox pipefail -#Homebrew randomly fails to update. Retry 5 times with 15s interval +# Homebrew randomly fails to update. Retry 5 times with 15s interval for i in {1..5}; do brew update && break || { echo "Update failed, retrying..."; sleep 15; }; done brew install coreutils @@ -10,4 +10,4 @@ brew install qt@5 brew link qt@5 # Workaround: https://github.com/Homebrew/homebrew-core/issues/8392 -echo "$(brew --prefix qt5)/bin" >> $GITHUB_PATH \ No newline at end of file +echo "$(brew --prefix qt@5)/bin" >> $GITHUB_PATH \ No newline at end of file