diff options
Diffstat (limited to 'commands/ls.go')
-rw-r--r-- | commands/ls.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/commands/ls.go b/commands/ls.go index 71c420c6..9134d752 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -52,11 +52,10 @@ git bug ls "foo bar" baz Use queries, flags, and full text search: git bug ls status:open --by creation "foo bar" baz `, - PreRunE: loadBackend(env), - PostRunE: closeBackend(env), - RunE: func(cmd *cobra.Command, args []string) error { + PreRunE: loadBackend(env), + RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error { return runLs(env, options, args) - }, + }), } flags := cmd.Flags() |