fix: remove entitlements from code signing for non-sandboxed app

For non-sandboxed apps, don't pass --entitlements to codesign.
This was causing code signature issues.
This commit is contained in:
Micha
2025-12-30 18:50:41 +01:00
parent 144ad27aa6
commit 281016bfc9

View File

@@ -165,7 +165,6 @@ if [[ -n "${CODESIGN_IDENTITY:-}" ]]; then
--force \
--options runtime \
--timestamp \
--entitlements "$ROOT_DIR/iKeyMon.entitlements" \
--sign "$CODESIGN_IDENTITY" \
"$APP_PATH"
else