Skip to content

Commit aca54d2

Browse files
Gabriele KarraGabriele Karra
authored andcommitted
fmt: rustfmt workspace
1 parent 8bb243c commit aca54d2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

codex-rs/cli/src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,7 @@ fn run_update_action(action: UpdateAction) -> anyhow::Result<()> {
274274
// ensures we fetch the latest cask metadata before attempting the upgrade,
275275
// preventing false "already latest" errors during the propagation window.
276276
if action == UpdateAction::BrewUpgrade {
277-
let update_status = std::process::Command::new("brew")
278-
.arg("update")
279-
.status()?;
277+
let update_status = std::process::Command::new("brew").arg("update").status()?;
280278
if !update_status.success() {
281279
anyhow::bail!("brew update failed with status {update_status}");
282280
}

0 commit comments

Comments
 (0)