summaryrefslogtreecommitdiff
path: root/completions/nproc
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
commit95623d39d6029ba78ec96ad5ea08e9ac12629b91 (patch)
treeea0fe36eb5e6f40e0a1f765d44c4b0c0b2bfb089 /completions/nproc
parent019f3cc463db63abc6460f97deb488deec43840b (diff)
downloadbash-completion-upstream.tar.gz
New upstream version 2.11upstream/2.11upstream
Diffstat (limited to 'completions/nproc')
-rw-r--r--completions/nproc8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/nproc b/completions/nproc
index 84092679..50273f07 100644
--- a/completions/nproc
+++ b/completions/nproc
@@ -6,7 +6,7 @@ _nproc()
_init_completion -s || return
case $prev in
- --help|--version|--ignore)
+ --help | --version | --ignore)
return
;;
esac
@@ -14,10 +14,10 @@ _nproc()
$split && return
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
fi
} &&
-complete -F _nproc nproc
+ complete -F _nproc nproc
# ex: filetype=sh