aboutsummaryrefslogtreecommitdiffstats
path: root/commands/ls-labels.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-05-09 11:33:20 +0200
committerMichael Muré <batolettre@gmail.com>2021-05-09 11:33:20 +0200
commit271dc1334cf8ce3c798dafeb9ac7113072195c93 (patch)
tree7b5e2bc96dacb4ea1ff36676c5a0dd904986e482 /commands/ls-labels.go
parenta75b27c4c6ad2fd91d247246f57c6323945c3095 (diff)
downloadgit-bug-271dc1334cf8ce3c798dafeb9ac7113072195c93.tar.gz
commands: proper backend close on RunE error
Diffstat (limited to 'commands/ls-labels.go')
-rw-r--r--commands/ls-labels.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/commands/ls-labels.go b/commands/ls-labels.go
index a7c2fb6f..086943a9 100644
--- a/commands/ls-labels.go
+++ b/commands/ls-labels.go
@@ -13,11 +13,10 @@ func newLsLabelCommand() *cobra.Command {
Long: `List valid labels.
Note: in the future, a proper label policy could be implemented where valid labels are defined in a configuration file. Until that, the default behavior is to return the list of labels already used.`,
- 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 runLsLabel(env)
- },
+ }),
}
return cmd