bash-completion.sh
branchv_0
changeset 2 e6294ba5017f
parent 1 ccaed729f8d3
--- a/bash-completion.sh	Sun May 01 22:27:42 2022 +0200
+++ b/bash-completion.sh	Sat Jul 23 21:35:51 2022 +0200
@@ -22,10 +22,10 @@
 	w2=${COMP_WORDS[COMP_CWORD-2]}
 	w3=${COMP_WORDS[COMP_CWORD-3]}
 
-	if   [[ "$w1" == "--endpoint-url"                  && "x$w0" == "x" ]];    then COMPREPLY=("'tcp://localhost:1234'")
+	if   [[ "$w1" == "--connection-string"             && "x$w0" == "x" ]];    then COMPREPLY=("'tcp://localhost:1234'")
 	else
 		OPTIONS=(
-			"--endpoint-url"
+			"--connection-string"
 		)
 		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
 	fi