git-bug/commands/bridge_rm.go

41 lines
784 B
Go
Raw Normal View History

2018-09-24 17:24:38 +03:00
package commands
import (
"fmt"
"github.com/spf13/cobra"
2018-09-24 17:24:38 +03:00
"github.com/MichaelMure/git-bug/bridge"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/util/interrupt"
2018-09-24 17:24:38 +03:00
)
func runBridgeRm(cmd *cobra.Command, args []string) error {
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
interrupt.RegisterCleaner(backend.Close)
2018-09-24 17:24:38 +03:00
2019-06-17 00:02:59 +03:00
err = bridge.RemoveBridge(backend, args[0])
2018-09-24 17:24:38 +03:00
if err != nil {
return err
}
fmt.Printf("Successfully removed bridge configuration %v", args[0])
2018-09-24 17:24:38 +03:00
return nil
}
var bridgeRmCmd = &cobra.Command{
Use: "rm <name>",
Short: "Delete a configured bridge.",
PreRunE: loadRepo,
RunE: runBridgeRm,
Args: cobra.ExactArgs(1),
2018-09-24 17:24:38 +03:00
}
func init() {
bridgeCmd.AddCommand(bridgeRmCmd)
}