From ddee9b2c14cf4c1855486c4683b6c241a8e47350 Mon Sep 17 00:00:00 2001 From: Cedric Specht Date: Wed, 23 Jul 2025 20:49:29 +0200 Subject: [PATCH] fix(cmd_root.go): change alias for --all flag from lowercase 'a' to uppercase 'A' for consistency with other flags (#108) --- cmd/bladectl/cmd_root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bladectl/cmd_root.go b/cmd/bladectl/cmd_root.go index 7a38d47..ecedd73 100644 --- a/cmd/bladectl/cmd_root.go +++ b/cmd/bladectl/cmd_root.go @@ -33,7 +33,7 @@ var ( ) func init() { - rootCmd.PersistentFlags().BoolVarP(&allBlades, "all", "a", false, "control all compute-blades at the same time") + rootCmd.PersistentFlags().BoolVarP(&allBlades, "all", "A", false, "control all compute-blades at the same time") rootCmd.PersistentFlags().StringArrayVar(&bladeNames, "blade", []string{""}, "Name of the compute-blade to control. If not provided, the compute-blade specified in `current-blade` will be used.") rootCmd.PersistentFlags().DurationVar(&timeout, "timeout", time.Minute, "timeout for gRPC requests") }