From c999362e491f31afd9c7cc32b2d35aa7fbc30d8a Mon Sep 17 00:00:00 2001 From: uncor3 Date: Fri, 24 Oct 2025 09:43:36 +0000 Subject: [PATCH] update workflow --- .github/workflows/build-macos.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 39b9518..5a78b1f 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -59,10 +59,11 @@ jobs: base_url="https://github.com/libimobiledevice" - libs=( "libplist" "libtatsu" "libimobiledevice-glue" "libusbmuxd" "libimobiledevice" "libirecovery") + libs=( "libplist" "libtatsu" "libimobiledevice-glue" "libusbmuxd" "libimobiledevice" "libirecovery" "ifuse" ) for name in "${libs[@]}"; do - ver_var=$(echo "${name^^}_VER" | sed 's/-/_/g') # e.g. LIBPLIST_VER + # Use tr for POSIX-compliant uppercase conversion instead of bash 4+ ^^ syntax + ver_var=$(echo "$name" | tr '[:lower:]' '[:upper:]' | sed 's/-/_/g')_VER ver="${!ver_var:-}" if [ -z "$ver" ]; then echo "Version for $name not set (env var $ver_var)"