mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
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.
This commit is contained in:
committed by
GitHub
parent
8fea8f73d6
commit
dd2d68e69e
@@ -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(())
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user