fix: preserve commit-quality blocking in bash dispatcher

This commit is contained in:
Affaan Mustafa
2026-04-14 21:17:17 -07:00
parent 1c45152c6d
commit a8bb5979a5
2 changed files with 8 additions and 4 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 ────────────────────────────────────────────