We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 498c5a5 commit ad917acCopy full SHA for ad917ac
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