From df91695737013cd84a69a2fa5d5818a6f99089bb Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 14 Sep 2025 19:32:58 +0200 Subject: [PATCH] Fix macOS CI Signed-off-by: falkTX --- .github/workflows/bootstrap-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bootstrap-deps.sh b/.github/workflows/bootstrap-deps.sh index df997716..b40271b4 100755 --- a/.github/workflows/bootstrap-deps.sh +++ b/.github/workflows/bootstrap-deps.sh @@ -73,8 +73,8 @@ function install_compiler() { case "${1}" in "macos"|"macos-intel"|"macos-10.15"|"macos-universal"|"macos-universal-10.15") - brew install autoconf automake cmake coreutils gawk git gnu-sed jq libtool make meson - brew uninstall --ignore-dependencies cairo freetype + brew uninstall --ignore-dependencies --force cairo cmake freetype + brew install autoconf automake coreutils gawk git gnu-sed jq libtool make meson [ -n "${GITHUB_ENV}" ] && echo "PAWPAW_PACK_NAME=${1}-$(sw_vers -productVersion | cut -d '.' -f 1)" >> "${GITHUB_ENV}" ;;