summaryrefslogtreecommitdiffstats
path: root/completions/cleanarch
diff options
context:
space:
mode:
Diffstat (limited to 'completions/cleanarch')
-rw-r--r--completions/cleanarch11
1 files changed, 5 insertions, 6 deletions
diff --git a/completions/cleanarch b/completions/cleanarch
index 0f7d5f5..c34d038 100644
--- a/completions/cleanarch
+++ b/completions/cleanarch
@@ -1,16 +1,15 @@
# mailman cleanarch completion -*- shell-script -*-
-_cleanarch()
+_comp_cmd_cleanarch()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '--status --dry-run --quiet --help' \
- -- "$cur"))
+ _comp_compgen -- -W '--status --dry-run --quiet --help'
fi
} &&
- complete -F _cleanarch cleanarch
+ complete -F _comp_cmd_cleanarch cleanarch
# ex: filetype=sh