Fix doodad edit-doodad args
This commit is contained in:
parent
b0a2524f1a
commit
8964322f4e
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user