Use rcodesign for dylib signing where avaiilable and clear out all "._" files...

See merge request ryubing/ryujinx!14
This commit is contained in:
TheToid 2025-06-03 23:26:49 -05:00 committed by GreemDev
parent 053a9cb549
commit 051c794cc4
3 changed files with 35 additions and 5 deletions

View file

@ -20,6 +20,18 @@ SOURCE_REVISION_ID=$6
CONFIGURATION=$7
CANARY=$8
if [[ "$(uname)" == "Darwin" ]]; then
echo "Clearing xattr on all dot undercsore files"
find "$BASE_DIR" -type f -name "._*" -exec sh -c '
for f; do
dir=$(dirname "$f")
base=$(basename "$f")
orig="$dir/${base#._}"
[ -f "$orig" ] && xattr -c "$orig" || true
done
' sh {} +
fi
if [ "$CANARY" == "1" ]; then
RELEASE_TAR_FILE_NAME=nogui-ryujinx-canary-$VERSION-macos_universal.tar
elif [ "$VERSION" == "1.1.0" ]; then