aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_rm.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bridge_rm.go')
-rw-r--r--commands/bridge_rm.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go
index 2ebc17a7..92f1b3c5 100644
--- a/commands/bridge_rm.go
+++ b/commands/bridge_rm.go
@@ -3,6 +3,7 @@ package commands
import (
"github.com/MichaelMure/git-bug/bridge"
"github.com/MichaelMure/git-bug/cache"
+ "github.com/MichaelMure/git-bug/cleaner"
"github.com/spf13/cobra"
)
@@ -12,6 +13,7 @@ func runBridgeRm(cmd *cobra.Command, args []string) error {
return err
}
defer backend.Close()
+ cleaner.Register(backend.Close)
err = bridge.RemoveBridges(backend, args[0])
if err != nil {