From 271dc1334cf8ce3c798dafeb9ac7113072195c93 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 9 May 2021 11:33:20 +0200 Subject: commands: proper backend close on RunE error --- commands/ls-labels.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'commands/ls-labels.go') 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 -- cgit