From b6e33a84eeb7638a6210b54b8e69fca608d0a188 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 10 Feb 2024 19:58:19 +0100 Subject: [PATCH] also handle "macos-intel" string for bootstrap deps script Signed-off-by: falkTX --- .github/workflows/bootstrap-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bootstrap-deps.sh b/.github/workflows/bootstrap-deps.sh index 0a2697e..be3fb79 100755 --- a/.github/workflows/bootstrap-deps.sh +++ b/.github/workflows/bootstrap-deps.sh @@ -72,7 +72,7 @@ function install_compiler() { } case "${1}" in - "macos"|"macos-10.15"|"macos-universal"|"macos-universal-10.15") + "macos"|"macos-intel"|"macos-10.15"|"macos-universal"|"macos-universal-10.15") brew install autoconf automake cmake coreutils gawk git gnu-sed jq make meson [ -n "${GITHUB_ENV}" ] && echo "PAWPAW_PACK_NAME=${1}-$(sw_vers -productVersion | cut -d '.' -f 1)" >> "${GITHUB_ENV}"