Skip to content

Commit

Permalink
alphabetize commands, add test.
Browse files Browse the repository at this point in the history
Signed-off-by: Ville Aikas <vaikas@chainguard.dev>
  • Loading branch information
vaikas committed Nov 28, 2023
1 parent 0ef16ae commit a90aebd
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkg/cli/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,19 @@ func New() *cobra.Command {
},
}

cmd.AddCommand(Completion())
cmd.AddCommand(Build())
cmd.AddCommand(Bump())
cmd.AddCommand(Keygen())
cmd.AddCommand(Completion())
cmd.AddCommand(Convert())
cmd.AddCommand(Index())
cmd.AddCommand(Keygen())
cmd.AddCommand(Lint())
cmd.AddCommand(PackageVersion())
cmd.AddCommand(Query())
cmd.AddCommand(Sign())
cmd.AddCommand(SignIndex())
cmd.AddCommand(Test())
cmd.AddCommand(UpdateCache())
cmd.AddCommand(Convert())
cmd.AddCommand(PackageVersion())
cmd.AddCommand(Query())
cmd.AddCommand(version.Version())
return cmd
}
Expand Down

0 comments on commit a90aebd

Please sign in to comment.