diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-15 02:33:06 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-15 02:33:06 +0200 |
commit | f70e775dbd7c53ebb6e3cd2ec1af8d73d13449b0 (patch) | |
tree | 92ac9d1c0b837e0adf2e4728cadd430cc5393a0b /commands/bridge_pull.go | |
parent | d69dcce806d280ddbd6a4fb17700153bc03da90b (diff) | |
download | git-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.go | 2 |
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 { |