From 9ebe2a614d662db82395f732c6be463220ca11c1 Mon Sep 17 00:00:00 2001 From: Maarten Dirkse Date: Thu, 7 Mar 2024 16:48:26 +0100 Subject: [PATCH] feat: rename command file to nuke and add q alias for --quiet (#107) --- pkg/commands/nuke/{command.go => nuke.go} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename pkg/commands/nuke/{command.go => nuke.go} (99%) diff --git a/pkg/commands/nuke/command.go b/pkg/commands/nuke/nuke.go similarity index 99% rename from pkg/commands/nuke/command.go rename to pkg/commands/nuke/nuke.go index bfb6b0cf..21084f62 100644 --- a/pkg/commands/nuke/command.go +++ b/pkg/commands/nuke/nuke.go @@ -224,8 +224,9 @@ func init() { //nolint:funlen Usage: "use these resource types with the Cloud Control API instead of the default", }, &cli.BoolFlag{ - Name: "quiet", - Usage: "hide filtered messages", + Name: "quiet", + Aliases: []string{"q"}, + Usage: "hide filtered messages", }, &cli.BoolFlag{ Name: "no-dry-run",