summaryrefslogtreecommitdiff
path: root/completions/nproc
diff options
context:
space:
mode:
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