Merge pull request #445 from janhq/chore/update-autosign-script

Update auto-sign plugin by search file permission 664
This commit is contained in:
hiento09 2023-10-25 10:35:32 +07:00 committed by GitHub
commit 168916da12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,4 +2,4 @@
APP_PATH=${APP_PATH}
DEVELOPER_ID=${DEVELOPER_ID}
find $APP_PATH -type f -perm +111 -exec codesign -s "$DEVELOPER_ID" --options=runtime {} \;
find $APP_PATH -type f \( -perm +111 -o -perm +644 \) -exec codesign -s "$DEVELOPER_ID" --options=runtime {} \;