commit 8a7ff5d74abd7722b20d2e5899fa63747908bad2
parent f628a9476988a746978f2844d817a501721db978
Author: Michael Camilleri <[email protected]>
Date: Tue, 17 Mar 2026 05:10:05 +0900
Update publishing script to check watchOS entitlements
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Scripts/publish-ios.sh b/Scripts/publish-ios.sh
@@ -102,7 +102,10 @@ echo "==> Checking entitlements in exported IPA..."
CHECK_DIR="/tmp/Listless-ipa-check"
rm -rf "$CHECK_DIR"
unzip -q "$IPA_PATH" -d "$CHECK_DIR"
+echo "--- iOS app entitlements ---"
codesign -d --entitlements - "$CHECK_DIR/Payload/Listless iOS.app"
+echo "--- watchOS app entitlements ---"
+codesign -d --entitlements - "$CHECK_DIR/Payload/Listless iOS.app/Watch/Listless.app"
rm -rf "$CHECK_DIR"
if $CHECK_ONLY; then