diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-17 20:47:31 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-17 20:47:31 +0200 |
commit | b08e28e67e64d09f615bf6f863fd8d5f1b2f8f7f (patch) | |
tree | b9b199be67565e27ec30f79cdb1df1acdd155b08 /commands/comment_add.go | |
parent | 7a511f9a13f3d1064fd11c9146e6b21cb961a8b2 (diff) | |
download | git-bug-b08e28e67e64d09f615bf6f863fd8d5f1b2f8f7f.tar.gz |
commands: fix "comment add" flags set on the wrong command
Diffstat (limited to 'commands/comment_add.go')
-rw-r--r-- | commands/comment_add.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/comment_add.go b/commands/comment_add.go index 6ee3fc15..d720a09b 100644 --- a/commands/comment_add.go +++ b/commands/comment_add.go @@ -62,13 +62,13 @@ var commentAddCmd = &cobra.Command{ func init() { commentCmd.AddCommand(commentAddCmd) - commentCmd.Flags().SortFlags = false + commentAddCmd.Flags().SortFlags = false - commentCmd.Flags().StringVarP(&commentAddMessageFile, "file", "F", "", + commentAddCmd.Flags().StringVarP(&commentAddMessageFile, "file", "F", "", "Take the message from the given file. Use - to read the message from the standard input", ) - commentCmd.Flags().StringVarP(&commentAddMessage, "message", "m", "", + commentAddCmd.Flags().StringVarP(&commentAddMessage, "message", "m", "", "Provide the new message from the command line", ) } |