From 85db664d1157ce86b58df4a6c92387457ff4f541 Mon Sep 17 00:00:00 2001 From: Ringo Hoffmann Date: Thu, 18 Jul 2024 17:40:54 +0200 Subject: [PATCH] add `rm` alias to `drop` command --- src/commands/drop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/drop.rs b/src/commands/drop.rs index 0b70ed8..2ea157b 100644 --- a/src/commands/drop.rs +++ b/src/commands/drop.rs @@ -5,7 +5,7 @@ use console::style; /// Drop an installed SDK. #[derive(Args)] -#[command(visible_aliases = ["delete", "remove"])] +#[command(visible_aliases = ["delete", "remove", "rm"])] pub struct Drop { /// The version which should be dropped. version: String,