mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 10:50:16 +00:00
Shellcheck compliance
scripts/openvpn/bash-completion * fix SC2207: Prefer mapfile or read -a to split command output (or quote to avoid splitting). * Added double quotes
This commit is contained in:
parent
685133bc00
commit
4d2e3ed3f8
1 changed files with 3 additions and 3 deletions
|
@ -10,13 +10,13 @@ _pivpn()
|
||||||
if [ "${#COMP_WORDS[@]}" -eq 2 ]
|
if [ "${#COMP_WORDS[@]}" -eq 2 ]
|
||||||
then
|
then
|
||||||
if [[ ${cur} == -* ]] ; then
|
if [[ ${cur} == -* ]] ; then
|
||||||
COMPREPLY=( $(compgen -W "${dashopts}" -- "${cur}") )
|
COMPREPLY=( "$(compgen -W "${dashopts}" -- "${cur}")" )
|
||||||
else
|
else
|
||||||
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
|
COMPREPLY=( "$(compgen -W "${opts}" -- "${cur}")" )
|
||||||
fi
|
fi
|
||||||
elif [[ ( "$prev" == "add" || "$prev" == "-a" ) && "${#COMP_WORDS[@]}" -eq 3 ]]
|
elif [[ ( "$prev" == "add" || "$prev" == "-a" ) && "${#COMP_WORDS[@]}" -eq 3 ]]
|
||||||
then
|
then
|
||||||
COMPREPLY=( $(compgen -W "nopass" -- "${cur}") )
|
COMPREPLY=( "$(compgen -W "nopass" -- "${cur}")" )
|
||||||
fi
|
fi
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue