git-bug/commands/bridge_pull.go

49 lines
885 B
Go
Raw Normal View History

2018-09-24 18:11:50 +03:00
package commands
import (
"github.com/MichaelMure/git-bug/bridge"
"github.com/MichaelMure/git-bug/bridge/core"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/util/interrupt"
2018-09-24 18:11:50 +03:00
"github.com/spf13/cobra"
)
func runBridgePull(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 18:11:50 +03:00
var b *core.Bridge
if len(args) == 0 {
b, err = bridge.DefaultBridge(backend)
} else {
b, err = bridge.NewBridgeFromFullName(backend, args[0])
2018-09-24 18:11:50 +03:00
}
if err != nil {
return err
}
err = b.ImportAll()
if err != nil {
return err
}
return nil
}
var bridgePullCmd = &cobra.Command{
Use: "pull [<name>]",
Short: "Pull updates.",
PreRunE: loadRepo,
RunE: runBridgePull,
2018-09-24 18:11:50 +03:00
}
func init() {
bridgeCmd.AddCommand(bridgePullCmd)
}