From dd2d68e69e29a728a935e0f8f98140d78c355a58 Mon Sep 17 00:00:00 2001 From: Ahmad Sohail Raoufi <111730637+SohailRaoufi@users.noreply.github.com> Date: Sun, 25 Jan 2026 23:14:15 +0430 Subject: [PATCH] chore: remove extra newline in println (#9850) ## Summary This PR makes a minor formatting adjustment to a `println!` message by removing an extra empty line and explicitly using `\n` for clarity. ## Changes - Adjusted console output formatting for the success message. - No functional or behavioral changes. --- codex-rs/cli/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codex-rs/cli/src/main.rs b/codex-rs/cli/src/main.rs index 332f6314b..103cc4b34 100644 --- a/codex-rs/cli/src/main.rs +++ b/codex-rs/cli/src/main.rs @@ -396,8 +396,7 @@ fn run_update_action(action: UpdateAction) -> anyhow::Result<()> { if !status.success() { anyhow::bail!("`{cmd_str}` failed with status {status}"); } - println!(); - println!("šŸŽ‰ Update ran successfully! Please restart Codex."); + println!("\nšŸŽ‰ Update ran successfully! Please restart Codex."); Ok(()) }