show combined output of bash tool progressively
Some checks are pending
deploy / deploy (push) Waiting to run

This commit is contained in:
Dax Raad 2025-08-11 01:23:00 -04:00
parent 457386ad08
commit 061ba65d20
4 changed files with 44 additions and 17 deletions

View file

@ -605,7 +605,7 @@ export function BashTool(props: ToolProps) {
return (
<ContentBash
command={props.state.input.command}
output={props.state.metadata?.stdout || ""}
output={props.state.metadata.output ?? props.state.metadata?.stdout}
description={props.state.metadata.description}
/>
)