summaryrefslogtreecommitdiff
path: root/completions/automake
diff options
context:
space:
mode:
Diffstat (limited to 'completions/automake')
-rw-r--r--completions/automake18
1 files changed, 9 insertions, 9 deletions
diff --git a/completions/automake b/completions/automake
index ff3d4523..5fe5f4f8 100644
--- a/completions/automake
+++ b/completions/automake
@@ -6,13 +6,13 @@ _automake()
_init_completion -s || return
case "$prev" in
- --help|--version)
+ --help | --version)
return
;;
- --warnings|-W)
- local cats=( gnu obsolete override portability syntax unsupported )
- COMPREPLY=( $(compgen -W \
- '${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur") )
+ --warnings | -W)
+ local cats=(gnu obsolete override portability syntax unsupported)
+ COMPREPLY=($(compgen -W \
+ '${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur"))
return
;;
--libdir)
@@ -23,14 +23,14 @@ _automake()
$split && return
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
_filedir
} &&
-complete -F _automake automake automake-1.1{0..6}
+ complete -F _automake automake automake-1.1{0..6}
# ex: filetype=sh