Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

Commit 9c2792f

Browse files
author
Alexis Bouchez
committed
fix: remove bad "Short" fields for commands
1 parent d45d187 commit 9c2792f

4 files changed

Lines changed: 1 addition & 5 deletions

File tree

commands/env/list.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ import (
1111

1212
func newListEnvCmd() *cobra.Command {
1313
listEnvCmd := &cobra.Command{
14-
Use: "list",
15-
Short: "ls",
14+
Use: "list",
1615
RunE: func(cmd *cobra.Command, args []string) error {
1716
fleetID, err := cmd.Flags().GetString("fleet")
1817
if err != nil {

commands/fleets/fleets.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import "github.com/spf13/cobra"
55
func NewCmd() *cobra.Command {
66
fleetsCmd := &cobra.Command{
77
Use: "fleets",
8-
Short: "f",
98
Aliases: []string{"fleet"},
109
}
1110
fleetsCmd.AddCommand(newCreateFleetCmd())

commands/gateways/gateways.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import "github.com/spf13/cobra"
55
func NewCmd() *cobra.Command {
66
gatewaysCmd := &cobra.Command{
77
Use: "gateways",
8-
Short: "g",
98
Aliases: []string{"gateway", "gtw"},
109
}
1110
gatewaysCmd.AddCommand(newCreateGatewayCmd())

commands/machines/machines.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import "github.com/spf13/cobra"
55
func NewCmd() *cobra.Command {
66
machinesCmd := &cobra.Command{
77
Use: "machines",
8-
Short: "m",
98
Aliases: []string{"machine"},
109
}
1110
machinesCmd.AddCommand(newListMachinesCmd())

0 commit comments

Comments
 (0)