Skip to content

Commit c1156a8

Browse files
authored
Remove duplicated "Successfully logged in message" (#2357)
1 parent dcfdd2f commit c1156a8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

codex-rs/cli/src/login.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ pub async fn login_with_chatgpt(codex_home: PathBuf) -> std::io::Result<()> {
2121
server.actual_port, server.auth_url,
2222
);
2323

24-
server.block_until_done()?;
25-
26-
eprintln!("Successfully logged in");
27-
Ok(())
24+
server.block_until_done()
2825
}
2926

3027
pub async fn run_login_with_chatgpt(cli_config_overrides: CliConfigOverrides) -> ! {

0 commit comments

Comments
 (0)