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