aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_pull.go
diff options
context:
space:
mode:
authorAmine Hilaly <hilalyamine@gmail.com>2019-06-15 02:33:06 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-06-15 02:33:06 +0200
commitf70e775dbd7c53ebb6e3cd2ec1af8d73d13449b0 (patch)
tree92ac9d1c0b837e0adf2e4728cadd430cc5393a0b /commands/bridge_pull.go
parentd69dcce806d280ddbd6a4fb17700153bc03da90b (diff)
downloadgit-bug-f70e775dbd7c53ebb6e3cd2ec1af8d73d13449b0.tar.gz
Store bridge type alongside the other params in the config
Diffstat (limited to 'commands/bridge_pull.go')
-rw-r--r--commands/bridge_pull.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bridge_pull.go b/commands/bridge_pull.go
index f9958882..c7a22d6d 100644
--- a/commands/bridge_pull.go
+++ b/commands/bridge_pull.go
@@ -23,7 +23,7 @@ func runBridgePull(cmd *cobra.Command, args []string) error {
if len(args) == 0 {
b, err = bridge.DefaultBridge(backend)
} else {
- b, err = bridge.NewBridgeFromFullName(backend, args[0])
+ b, err = bridge.LoadBridge(backend, args[0])
}
if err != nil {