We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e75e82f + 5833508 commit 6e0c459Copy full SHA for 6e0c459
codex-rs/cli/src/main.rs
@@ -294,7 +294,8 @@ async fn cli_main(codex_linux_sandbox_exe: Option<PathBuf>) -> anyhow::Result<()
294
last,
295
config_overrides,
296
);
297
- codex_tui::run_main(interactive, codex_linux_sandbox_exe).await?;
+ let exit_info = codex_tui::run_main(interactive, codex_linux_sandbox_exe).await?;
298
+ print_exit_messages(exit_info);
299
}
300
Some(Subcommand::Login(mut login_cli)) => {
301
prepend_config_flags(
0 commit comments