diff options
author | Gabriel F. T. Gomes <gabriel@inconstante.net.br> | 2020-08-03 18:43:14 -0300 |
---|---|---|
committer | Gabriel F. T. Gomes <gabriel@inconstante.net.br> | 2020-08-03 18:43:14 -0300 |
commit | cc81eb120ad1a456f030f7b828697013a9b2b66a (patch) | |
tree | bb61702f98b407b2f7987faa846190fb3f002e55 /completions/postmap | |
parent | 8394526300cc384e53c470303aeb8b4fdcaf84a3 (diff) | |
parent | 95623d39d6029ba78ec96ad5ea08e9ac12629b91 (diff) | |
download | bash-completion-cc81eb120ad1a456f030f7b828697013a9b2b66a.tar.gz |
Update upstream source from tag 'upstream/2.11'
Update to upstream version '2.11'
with Debian dir 932c2c1a6192441f3cd8897e72d737f2f0277f60
Diffstat (limited to 'completions/postmap')
-rw-r--r-- | completions/postmap | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/completions/postmap b/completions/postmap index 66756c1e..35c4ada1 100644 --- a/completions/postmap +++ b/completions/postmap @@ -16,26 +16,26 @@ _postmap() esac if [[ $cur == -* ]]; then - COMPREPLY=( $(compgen -W '$(_parse_usage "$1")' -- "$cur") ) + COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur")) return fi - if [[ "$cur" == *:* ]]; then + if [[ $cur == *:* ]]; then compopt -o filenames - COMPREPLY=( $(compgen -f -- "${cur#*:}") ) + COMPREPLY=($(compgen -f -- "${cur#*:}")) else local len=${#cur} pval for pval in $(/usr/sbin/postconf -m 2>/dev/null); do - if [[ "$cur" == "${pval:0:$len}" ]]; then - COMPREPLY+=( "$pval:" ) + if [[ $cur == "${pval:0:len}" ]]; then + COMPREPLY+=("$pval:") fi done - if [[ ! $COMPREPLY ]]; then + if [[ ! ${COMPREPLY-} ]]; then compopt -o filenames - COMPREPLY=( $(compgen -f -- "$cur") ) + COMPREPLY=($(compgen -f -- "$cur")) fi fi } && -complete -F _postmap postmap postalias + complete -F _postmap postmap postalias # ex: filetype=sh |