codex: fix CI failure on PR #14988

This commit is contained in:
Eric Traut
2026-03-17 17:14:20 -06:00
parent 1d0e8577a2
commit 27b0848622

View File

@@ -1698,8 +1698,8 @@ impl CodexClient {
std::io::stdout().flush().ok();
}
ServerNotification::CommandExecutionOutputDelta(delta) => {
self.note_helper_output(&delta.delta);
print!("{}", delta.delta);
self.note_helper_output(&String::from_utf8_lossy(&delta.delta));
std::io::stdout().write_all(&delta.delta).ok();
std::io::stdout().flush().ok();
}
ServerNotification::TerminalInteraction(delta) => {