diff options
Diffstat (limited to 'commands')
-rw-r--r-- | commands/bridge_configure.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/commands/bridge_configure.go b/commands/bridge_configure.go index 95cff1a2..bb32c84e 100644 --- a/commands/bridge_configure.go +++ b/commands/bridge_configure.go @@ -35,6 +35,10 @@ func runBridgeConfigure(cmd *cobra.Command, args []string) error { defer backend.Close() interrupt.RegisterCleaner(backend.Close) + if (tokenStdin || bridgeParams.Token != "") && (bridgeConfigureName == "" || bridgeConfigureTarget == "") { + return fmt.Errorf("you must bridge name and target to configure a bridge with a token") + } + if bridgeConfigureTarget == "" { bridgeConfigureTarget, err = promptTarget() if err != nil { |