aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bridge.go')
-rw-r--r--commands/bridge.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/bridge.go b/commands/bridge.go
index 4576cd0a..ffba2b9d 100644
--- a/commands/bridge.go
+++ b/commands/bridge.go
@@ -5,6 +5,7 @@ import (
"github.com/MichaelMure/git-bug/bridge"
"github.com/MichaelMure/git-bug/cache"
+ "github.com/MichaelMure/git-bug/cleaner"
"github.com/spf13/cobra"
)
@@ -14,6 +15,7 @@ func runBridge(cmd *cobra.Command, args []string) error {
return err
}
defer backend.Close()
+ cleaner.Register(backend.Close)
configured, err := bridge.ConfiguredBridges(backend)
if err != nil {