From 20907ad83396ace514d70023dbda28c3dc1ef007 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Fri, 26 Feb 2021 12:47:31 +0100 Subject: [PATCH] Add a missing option to scripts/bash-completion.sh. --- scripts/bash-completion.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bash-completion.sh b/scripts/bash-completion.sh index 3ad5d82..26c793d 100644 --- a/scripts/bash-completion.sh +++ b/scripts/bash-completion.sh @@ -5,7 +5,7 @@ _ybconAutoComplete() { COMPREPLY=() current="${COMP_WORDS[COMP_CWORD]}" previous="${COMP_WORDS[COMP_CWORD-1]}" - options='--help --printresult -p' + options='-h -p --help --printresult' if [[ "${current}" == -* ]]; then COMPREPLY=("$(compgen -W "$options" -- "$current")") return 0