refactor(uv step): check self update result if self-update feat is available (#1000)

refactor: check self update result if self-update feat is available
This commit is contained in:
SteveLauC
2024-12-10 20:55:32 +08:00
committed by GitHub
parent a0963fe3fc
commit 8227890808

View File

@@ -1129,8 +1129,7 @@ pub fn run_uv(ctx: &ExecutionContext) -> Result<()> {
ctx.run_type() ctx.run_type()
.execute(&uv_exec) .execute(&uv_exec)
.args(["self", "update"]) .args(["self", "update"])
.status_checked() .status_checked()?;
.ok();
} }
ctx.run_type() ctx.run_type()