Skip to content

Commit

Permalink
add "at" alias (#195)
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Vaumoron <dvaumoron@gmail.com>
  • Loading branch information
dvaumoron authored Jun 30, 2024
1 parent cfb3889 commit bf68f1c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/tenv/tenv.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,10 @@ func initRootCmd(conf *config.Config, builders map[string]builder.BuilderFunc, h
rootCmd.AddCommand(tgCmd)

atmosCmd := &cobra.Command{
Use: cmdconst.AtmosName,
Short: atmosHelp,
Long: atmosHelp,
Use: "at",
Aliases: []string{cmdconst.AtmosName},
Short: atmosHelp,
Long: atmosHelp,
}

atmosParams := subCmdParams{
Expand Down

0 comments on commit bf68f1c

Please sign in to comment.