We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cd3be5 commit 6c19e8dCopy full SHA for 6c19e8d
1 file changed
runner/codegen/base-cli-agent-runner.ts
@@ -232,6 +232,9 @@ export abstract class BaseCliAgentRunner {
232
env: {...process.env},
233
});
234
235
+ // Important! some agents won't start executing until stdin has ended.
236
+ childProcess.stdin.end();
237
+
238
childProcess.on('close', code =>
239
finalize(
240
`${this.displayName} process has exited` + (code == null ? '.' : ` with ${code} code.`),
0 commit comments