From cac1e7bcfc59044730c075d76ae71f050fc0f3ce Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 9 Aug 2024 09:37:03 -0400 Subject: [PATCH] Add `update` alias for `uv tool upgrade` (#5948) ## Summary I always get this wrong with `brew`, it'd be nice for it to "just work" either way. --- crates/uv-cli/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index aee3b2e18..67d142ddc 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -2556,6 +2556,7 @@ pub enum ToolCommand { /// Install a tool. Install(ToolInstallArgs), /// Upgrade a tool. + #[command(alias = "update")] Upgrade(ToolUpgradeArgs), /// List installed tools. List(ToolListArgs),