Skip to content

Commit

Permalink
uv: fixing return behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaspar committed Oct 29, 2024
1 parent e83835d commit 170d087
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/steps/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1040,11 +1040,11 @@ pub fn run_uv(ctx: &ExecutionContext) -> Result<()> {
.output_checked();

if result.is_ok() {
return ctx
.run_type()
ctx.run_type()
.execute(&uv_exec)
.args(["self", "update"])
.status_checked();
.status_checked()
.ok();
}

ctx.run_type()
Expand Down

0 comments on commit 170d087

Please sign in to comment.