From c38f8f1c307cf0320ed3d8556cd9dede443fb2a2 Mon Sep 17 00:00:00 2001 From: Rafael Passos Date: Tue, 23 Oct 2018 18:01:00 -0300 Subject: Registering lock clearing functions to Cleaner --- commands/status.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'commands/status.go') diff --git a/commands/status.go b/commands/status.go index 6aed000a..bdd6dd4a 100644 --- a/commands/status.go +++ b/commands/status.go @@ -4,6 +4,7 @@ import ( "fmt" "github.com/MichaelMure/git-bug/cache" + "github.com/MichaelMure/git-bug/cleaner" "github.com/MichaelMure/git-bug/commands/select" "github.com/spf13/cobra" ) @@ -14,6 +15,7 @@ func runStatus(cmd *cobra.Command, args []string) error { return err } defer backend.Close() + cleaner.Register(backend.Close) b, args, err := _select.ResolveBug(backend, args) if err != nil { -- cgit From f72b18496b508c23cee6fa99d764cfe59208515c Mon Sep 17 00:00:00 2001 From: Rafael Passos Date: Wed, 24 Oct 2018 18:36:39 -0300 Subject: moved cleaner function to util/interrupt --- commands/status.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands/status.go') diff --git a/commands/status.go b/commands/status.go index bdd6dd4a..7928628a 100644 --- a/commands/status.go +++ b/commands/status.go @@ -4,8 +4,8 @@ import ( "fmt" "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/cleaner" "github.com/MichaelMure/git-bug/commands/select" + "github.com/MichaelMure/git-bug/util/interrupt" "github.com/spf13/cobra" ) @@ -15,7 +15,7 @@ func runStatus(cmd *cobra.Command, args []string) error { return err } defer backend.Close() - cleaner.Register(backend.Close) + interrupt.RegisterCleaner(backend.Close) b, args, err := _select.ResolveBug(backend, args) if err != nil { -- cgit