From 7edd8f2976af6ddec202bbe02a2a7028ee061a80 Mon Sep 17 00:00:00 2001 From: Pavel Sviderski Date: Wed, 21 May 2025 15:46:31 +1000 Subject: [PATCH] chore: add m alias for machine command --- cmd/uncloud/machine/root.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/uncloud/machine/root.go b/cmd/uncloud/machine/root.go index aaff2c07..f5346e99 100644 --- a/cmd/uncloud/machine/root.go +++ b/cmd/uncloud/machine/root.go @@ -6,8 +6,9 @@ import ( func NewRootCommand() *cobra.Command { cmd := &cobra.Command{ - Use: "machine", - Short: "Manage machines in an Uncloud cluster.", + Use: "machine", + Aliases: []string{"m"}, + Short: "Manage machines in an Uncloud cluster.", } cmd.AddCommand( NewAddCommand(),