diff options
Diffstat (limited to 'commands/label.go')
-rw-r--r-- | commands/label.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/label.go b/commands/label.go index 0221701c..58ccc299 100644 --- a/commands/label.go +++ b/commands/label.go @@ -5,6 +5,7 @@ import ( "github.com/MichaelMure/git-bug/cache" "github.com/MichaelMure/git-bug/commands/select" + "github.com/MichaelMure/git-bug/util/interrupt" "github.com/spf13/cobra" ) @@ -14,6 +15,7 @@ func runLabel(cmd *cobra.Command, args []string) error { return err } defer backend.Close() + interrupt.RegisterCleaner(backend.Close) b, args, err := _select.ResolveBug(backend, args) if err != nil { |