Skip to content

Commit 5a00720

Browse files
committed
fix(ci): repair signing lint and test types
Use the canonical undefined comparison and preserve the gateway predicate mock signature so full release-gate lint and test-type checks pass.
1 parent 817dd59 commit 5a00720

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/ios-release-signing.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function readManifest(manifestPath) {
6868
if (!Array.isArray(parsed.targets) || parsed.targets.length === 0) {
6969
throw new Error("Signing manifest must include targets.");
7070
}
71-
if (typeof parsed.appGroupId !== "undefined") {
71+
if (parsed.appGroupId !== undefined) {
7272
validateAppGroupId(parsed.appGroupId, "Signing manifest appGroupId");
7373
}
7474

0 commit comments

Comments
 (0)