fix(cli): complete process lifecycle migration

This commit is contained in:
James
2026-07-20 09:04:03 -07:00
parent e0bda7a171
commit 619406a23b
4 changed files with 6 additions and 8 deletions
+2 -2
View File
@@ -370,7 +370,7 @@ export function validateDryRunSource(source: ProjectInputSource, dryRun: boolean
"Invalid --dry-run input",
"--dry-run inspects a local project directory and cannot be combined with --asset-id or --url.",
);
process.exit(1);
failCommand();
}
// ---------------------------------------------------------------------------
@@ -616,7 +616,7 @@ function prepareLocalArchive(
} catch (err) {
const msg = normalizeErrorMessage(err);
errorBox("Zip failed", msg, "Check the project and .hyperframesignore for missing files.");
process.exit(1);
failCommand();
}
}