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.
1 parent 8bb243c commit aca54d2Copy full SHA for aca54d2
codex-rs/cli/src/main.rs
@@ -274,9 +274,7 @@ fn run_update_action(action: UpdateAction) -> anyhow::Result<()> {
274
// ensures we fetch the latest cask metadata before attempting the upgrade,
275
// preventing false "already latest" errors during the propagation window.
276
if action == UpdateAction::BrewUpgrade {
277
- let update_status = std::process::Command::new("brew")
278
- .arg("update")
279
- .status()?;
+ let update_status = std::process::Command::new("brew").arg("update").status()?;
280
if !update_status.success() {
281
anyhow::bail!("brew update failed with status {update_status}");
282
}
0 commit comments