Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vdesabou committed Dec 14, 2023
1 parent f619d09 commit 783e8c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/cli/completions.bash
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ _playground_completions() {
;;

'connector search-jar'*'--connector-plugin')
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_playground_completions_filter "$(playground get-connector-plugin)")" -- "$cur" )
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_playground_completions_filter "$(playground get-connector-plugin "$cur")")" -- "$cur" )
;;

'topic set-schema-compatibility'*'--topic')
Expand Down Expand Up @@ -473,7 +473,7 @@ _playground_completions() {
;;

'connector search-jar'*'-c')
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_playground_completions_filter "$(playground get-connector-plugin)")" -- "$cur" )
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_playground_completions_filter "$(playground get-connector-plugin "$cur")")" -- "$cur" )
;;

'ccloud-connector delete'*)
Expand Down
2 changes: 1 addition & 1 deletion scripts/cli/src/bashly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2452,7 +2452,7 @@ commands:
required: true
arg: connector-plugin
completions:
- $(playground get-connector-plugin)
- $(playground get-connector-plugin "$cur")
help: |-
🔌 Connector plugin name
Expand Down

0 comments on commit 783e8c8

Please sign in to comment.