mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
fix(cli-executor): update stdin prompt variable for CLI tool execution
This commit is contained in:
@@ -312,7 +312,7 @@ async function executeCliTool(
|
|||||||
|
|
||||||
// Write prompt to stdin if using stdin mode (for gemini/qwen)
|
// Write prompt to stdin if using stdin mode (for gemini/qwen)
|
||||||
if (useStdin && child.stdin) {
|
if (useStdin && child.stdin) {
|
||||||
child.stdin.write(prompt);
|
child.stdin.write(finalPrompt);
|
||||||
child.stdin.end();
|
child.stdin.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user