From 156efbdb64eb83aef8cea00cf6e6085e50ee136e Mon Sep 17 00:00:00 2001 From: SFENCE Date: Sun, 7 Sep 2025 20:24:09 +0200 Subject: [PATCH] Fix cmake install from brew for ios. --- util/ci/common.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/ci/common.sh b/util/ci/common.sh index d8b403387a..1b4545efbe 100644 --- a/util/ci/common.sh +++ b/util/ci/common.sh @@ -54,6 +54,9 @@ install_macos_deps() { install_ios_deps() { osver=$1 + # Uninstall the bundled cmake, it is outdated, and brew does not want to install the newest version with this one present since they are from different taps. + brew uninstall cmake || : + local pkgs=( cmake gettext wget )