Skip to content

Commit

Permalink
refactor(uv step): check self update result if self-update feat is av…
Browse files Browse the repository at this point in the history
…ailable (topgrade-rs#1000)

refactor: check self update result if self-update feat is available
  • Loading branch information
SteveLauC authored Dec 10, 2024
1 parent a0963fe commit 8227890
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/steps/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1129,8 +1129,7 @@ pub fn run_uv(ctx: &ExecutionContext) -> Result<()> {
ctx.run_type()
.execute(&uv_exec)
.args(["self", "update"])
.status_checked()
.ok();
.status_checked()?;
}

ctx.run_type()
Expand Down

0 comments on commit 8227890

Please sign in to comment.