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/title_edit.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'commands/title_edit.go') diff --git a/commands/title_edit.go b/commands/title_edit.go index f3b93bb1..de9a55ab 100644 --- a/commands/title_edit.go +++ b/commands/title_edit.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/MichaelMure/git-bug/input" "github.com/spf13/cobra" @@ -19,6 +20,7 @@ func runTitleEdit(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/title_edit.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands/title_edit.go') diff --git a/commands/title_edit.go b/commands/title_edit.go index de9a55ab..6bbd1b0a 100644 --- a/commands/title_edit.go +++ b/commands/title_edit.go @@ -4,9 +4,9 @@ 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/input" + "github.com/MichaelMure/git-bug/util/interrupt" "github.com/spf13/cobra" ) @@ -20,7 +20,7 @@ func runTitleEdit(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