Merge pull request #5574 from filecoin-project/nonsense/ux-categories-upper

ux/ui suggestion: make categories uppercase
This commit is contained in:
Łukasz Magiera 2021-02-10 16:55:43 +01:00 committed by GitHub
commit 577368ca03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -324,6 +324,6 @@ var Commands = []*cli.Command{
}
func WithCategory(cat string, cmd *cli.Command) *cli.Command {
cmd.Category = cat
cmd.Category = strings.ToUpper(cat)
return cmd
}