diff options
author | Michael Muré <batolettre@gmail.com> | 2021-05-10 11:14:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 11:14:26 +0200 |
commit | 13d9632fb888dde9962e122ef06614ca9e9da83d (patch) | |
tree | f743c58e2748cfa5e01fd81ad3ea3c7a51003a33 /commands/comment.go | |
parent | 52b7ec5959d6aa24b2fa3bff33f3e6424f11d885 (diff) | |
parent | 271dc1334cf8ce3c798dafeb9ac7113072195c93 (diff) | |
download | git-bug-13d9632fb888dde9962e122ef06614ca9e9da83d.tar.gz |
Merge pull request #671 from MichaelMure/close-on-error
commands: proper backend close on RunE error
Diffstat (limited to 'commands/comment.go')
-rw-r--r-- | commands/comment.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/commands/comment.go b/commands/comment.go index eb90624a..90657e4a 100644 --- a/commands/comment.go +++ b/commands/comment.go @@ -12,13 +12,12 @@ func newCommentCommand() *cobra.Command { env := newEnv() cmd := &cobra.Command{ - Use: "comment [ID]", - Short: "Display or add comments to a bug.", - PreRunE: loadBackend(env), - PostRunE: closeBackend(env), - RunE: func(cmd *cobra.Command, args []string) error { + Use: "comment [ID]", + Short: "Display or add comments to a bug.", + PreRunE: loadBackend(env), + RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error { return runComment(env, args) - }, + }), } cmd.AddCommand(newCommentAddCommand()) |