fix(ci): repair signing lint and test types · openclaw/openclaw@5a00720
openclaw
·
2026-06-19
·
via Recent Commits to openclaw:main
Commit 5a00720
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 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|
@@ -68,7 +68,7 @@ function readManifest(manifestPath) {
|
68 | 68 | if (!Array.isArray(parsed.targets) || parsed.targets.length === 0) { |
69 | 69 | throw new Error("Signing manifest must include targets."); |
70 | 70 | } |
71 | | -if (typeof parsed.appGroupId !== "undefined") { |
| 71 | +if (parsed.appGroupId !== undefined) { |
72 | 72 | validateAppGroupId(parsed.appGroupId, "Signing manifest appGroupId"); |
73 | 73 | } |
74 | 74 | |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
0 commit comments