aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_auth_rm.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bridge_auth_rm.go')
-rw-r--r--commands/bridge_auth_rm.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/bridge_auth_rm.go b/commands/bridge_auth_rm.go
index fa73ad11..a28057de 100644
--- a/commands/bridge_auth_rm.go
+++ b/commands/bridge_auth_rm.go
@@ -16,7 +16,8 @@ func newBridgeAuthRm() *cobra.Command {
RunE: func(cmd *cobra.Command, args []string) error {
return runBridgeAuthRm(env, args)
},
- Args: cobra.ExactArgs(1),
+ Args: cobra.ExactArgs(1),
+ ValidArgsFunction: completeBridgeAuth(env),
}
return cmd