fix(continuity): use active Node runtime for finalization

This commit is contained in:
冰朔 2026-08-05 21:09:21 +08:00
commit 6a05fe6ba2
2 changed files with 3 additions and 3 deletions

View file

@ -30,11 +30,11 @@
"any failed gate leaves the development lane unfinished" "any failed gate leaves the development lane unfinished"
], ],
"source_sha256": { "source_sha256": {
"finalizer": "ff29851847ec779c8f120d29d4614a361c3e47184939069d0f0cf3d7b50b52f4", "finalizer": "a1f51515cc3c175f83a487f499ddd26ec13aec17d063d4416efe714780a02517",
"tests": "39e70be546c54c1e315bd5d8447947b79fb1a0b67416cc2acd0f0a7027075bd0" "tests": "39e70be546c54c1e315bd5d8447947b79fb1a0b67416cc2acd0f0a7027075bd0"
}, },
"runtime_sha256": { "runtime_sha256": {
"bootstrap": "ee28b04e2832819a04e79a0407852fc139f16cf11f3e9b9a5687a061e890dd71", "bootstrap": "cbf5be03e5156a11f3ae11d0baf2f9daa2c8b4e58c8a405de22bcadff024c282",
"skill": "e419dab2d1646acc1c03cfe6b66dc9a42549fc4e8b19aa5eaed0057386c1b92c", "skill": "e419dab2d1646acc1c03cfe6b66dc9a42549fc4e8b19aa5eaed0057386c1b92c",
"publish_policy": "10bc53c439479c67f5b59685a29e221e0db2baab48ceb26c8369ca75c1427330" "publish_policy": "10bc53c439479c67f5b59685a29e221e0db2baab48ceb26c8369ca75c1427330"
}, },

View file

@ -151,7 +151,7 @@ function git(worktree, args) {
} }
function guard(guardScript, args) { function guard(guardScript, args) {
const output = run("/usr/bin/node", [guardScript, ...args]); const output = run(process.execPath, [guardScript, ...args]);
return output ? JSON.parse(output) : null; return output ? JSON.parse(output) : null;
} }