[Fix] Disable ShellCheck SC2207 in bash_completion line 14

Peter Dave Hello 2017-12-09 17:47:14 +08:00
parent 7ad6d98ced
commit fce7f4ed13
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ __nvm_generate_completion()
{
declare current_word
current_word="${COMP_WORDS[COMP_CWORD]}"
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$1" -- "$current_word"))
return 0
}