Fix doodad edit-doodad args

modals
Noah 2020-06-05 00:26:48 -07:00
parent b0a2524f1a
commit 8964322f4e
1 changed files with 6 additions and 4 deletions

View File

@ -20,8 +20,9 @@ func init() {
ArgsUsage: "<filename.doodad>", ArgsUsage: "<filename.doodad>",
Flags: []cli.Flag{ Flags: []cli.Flag{
&cli.BoolFlag{ &cli.BoolFlag{
Name: "quiet, q", Name: "quiet",
Usage: "limit output (don't show doodad data at the end)", Aliases: []string{"q"},
Usage: "limit output (don't show doodad data at the end)",
}, },
&cli.StringFlag{ &cli.StringFlag{
Name: "title", Name: "title",
@ -32,8 +33,9 @@ func init() {
Usage: "set the doodad author", Usage: "set the doodad author",
}, },
&cli.StringSliceFlag{ &cli.StringSliceFlag{
Name: "tag, t", Name: "tag",
Usage: "set a key/value tag on the doodad, in key=value format. Empty value deletes the tag.", Aliases: []string{"t"},
Usage: "set a key/value tag on the doodad, in key=value format. Empty value deletes the tag.",
}, },
&cli.BoolFlag{ &cli.BoolFlag{
Name: "hide", Name: "hide",