diff -r f724d805c34a -r 3891db9e45b7 bash-completion.sh --- a/bash-completion.sh Mon May 02 17:59:10 2022 +0200 +++ b/bash-completion.sh Sat Jul 23 21:36:01 2022 +0200 @@ -23,12 +23,12 @@ w3=${COMP_WORDS[COMP_CWORD-3]} if [[ "$w1" == "--relation" && "x$w0" == "x" ]]; then COMPREPLY=("''") - elif [[ "$w1" == "--endpoint-url" && "x$w0" == "x" ]]; then COMPREPLY=("'tcp://*:1234'") + elif [[ "$w1" == "--connection-string" && "x$w0" == "x" ]]; then COMPREPLY=("'tcp://*:1234'") elif [[ "$w1" == "--message-count" && "x$w0" == "x" ]]; then COMPREPLY=("1") else OPTIONS=( "--relation" - "--endpoint-url" + "--connection-string" "--message-count" ) COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))