fix: consolidate bash hooks without fork storms

This commit is contained in:
Affaan Mustafa
2026-04-14 21:23:57 -07:00
parent 7eb7c598fb
commit 1fabf4d2cf
15 changed files with 605 additions and 279 deletions

View File

@@ -380,7 +380,11 @@ function evaluate(rawInput) {
}
function run(rawInput) {
return evaluate(rawInput).output;
const result = evaluate(rawInput);
return {
stdout: result.output,
exitCode: result.exitCode,
};
}
// ── stdin entry point ────────────────────────────────────────────