mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 23:12:30 +02:00
fix: consolidate bash hooks without fork storms
This commit is contained in:
parent
7eb7c598fb
commit
1fabf4d2cf
15 changed files with 605 additions and 279 deletions
|
|
@ -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 ────────────────────────────────────────────
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue