mirror of
https://github.com/LeeGaoGao/ECC.git
synced 2026-07-22 11:03:14 +00:00
fix: consolidate bash hooks without fork storms
This commit is contained in:
@@ -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 ────────────────────────────────────────────
|
||||
|
||||
Reference in New Issue
Block a user