iOS/tvOS: fix framework creation (#16455)

This commit is contained in:
Eric Warmenhoven 2024-04-22 22:39:47 -04:00 committed by GitHub
parent 0398e4845d
commit 9df59e4044
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,7 +20,7 @@ fi
mkdir -p "$BASE_DIR"/Frameworks
for dylib in "$BASE_DIR"/modules/*.dylib ; do
for dylib in $(find "$BASE_DIR"/modules -maxdepth 1 -type f -regex '.*libretro.*\.dylib$') ; do
intermediate=$(basename "$dylib")
intermediate="${intermediate/%.dylib/}"
identifier="${intermediate/%$SUFFIX/}"