MacUpdater: Switch to mac-codesign script for code signing

This commit is contained in:
OatmealDome 2024-07-31 13:31:41 -04:00
parent 4883889e23
commit cbbffce79a
2 changed files with 7 additions and 3 deletions

View file

@ -52,7 +52,7 @@ if [ -d "$TARGET_PATH" ]; then
# Newlines are the only valid separator character in find's output.
IFS=$'\n'
for framework in $(find "$TARGET_PATH" -not -path "*/Helpers/*" -name '*.dylib' -or -name '*.framework'); do
for framework in $(find "$TARGET_PATH" -depth -not -path "*/Helpers/*" -name '*.dylib' -or -name '*.framework'); do
sign "$framework"
done