mirror of
https://github.com/openai/codex.git
synced 2026-04-24 06:35:50 +00:00
codex: fix CI failure on PR #14988
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user