summaryrefslogtreecommitdiff
path: root/completions/apt-build
diff options
context:
space:
mode:
Diffstat (limited to 'completions/apt-build')
-rw-r--r--completions/apt-build29
1 files changed, 15 insertions, 14 deletions
diff --git a/completions/apt-build b/completions/apt-build
index b6cf8eff..713f4c39 100644
--- a/completions/apt-build
+++ b/completions/apt-build
@@ -6,48 +6,49 @@ _apt_build()
_init_completion || return
local special i
- for (( i=0; i < ${#words[@]}-1; i++ )); do
+ for ((i = 1; i < ${#words[@]} - 1; i++)); do
if [[ ${words[i]} == @(install|remove|source|info|clean) ]]; then
special=${words[i]}
+ break
fi
done
- if [[ -n $special ]]; then
+ if [[ -v special ]]; then
case $special in
- install|source|info)
- COMPREPLY=( $(apt-cache pkgnames "$cur" 2>/dev/null) )
+ install | source | info)
+ COMPREPLY=($(_xfunc apt-cache _apt_cache_packages))
;;
remove)
- COMPREPLY=( \
- $(_xfunc dpkg _comp_dpkg_installed_packages "$cur") )
+ COMPREPLY=(
+ $(_xfunc dpkg _comp_dpkg_installed_packages "$cur"))
;;
esac
return
fi
case $prev in
- --patch|--build-dir|--repository-dir)
+ --patch | --build-dir | --repository-dir)
_filedir
return
;;
- -h|--help)
+ -h | --help)
return
;;
esac
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '--help --show-upgraded -u --build-dir
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '--help --show-upgraded -u --build-dir
--repository-dir --build-only --build-command --reinstall --rebuild
--remove-builddep --no-wrapper --purge --patch --patch-strip -p
- --yes -y --version -v --no-source' -- "$cur") )
+ --yes -y --version -v --no-source' -- "$cur"))
else
- COMPREPLY=( $(compgen -W 'update upgrade install remove source
+ COMPREPLY=($(compgen -W 'update upgrade install remove source
dist-upgrade world clean info clean-build update-repository' \
- -- "$cur") )
+ -- "$cur"))
fi
} &&
-complete -F _apt_build apt-build
+ complete -F _apt_build apt-build
# ex: filetype=sh