mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-25 19:22:07 +00:00
eb96c6f341
* doc/manuals/fedabipkgdiff.rst: Add description of --abipkgdiff option. Reformat paragraph. * bash-completion/fedabipkgdiff: Add --abipkgdiff Signed-off-by: Chenxiong Qi <cqi@redhat.com> Signed-off-by: Dodji Seketeli <dodji@redhat.com>
30 lines
704 B
Plaintext
Executable File
30 lines
704 B
Plaintext
Executable File
_fedabipkgdiff_module()
|
|
{
|
|
local cur OPTS
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
case $cur in
|
|
-*)
|
|
OPTS=" --dry-run
|
|
--debug
|
|
--traceback
|
|
--server
|
|
--topdir
|
|
--from
|
|
--to
|
|
--all-subpackages
|
|
--dso-only
|
|
--no-default-suppression
|
|
--no-devel-pkg
|
|
--abipkgdiff"
|
|
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
|
|
return 0
|
|
;;
|
|
esac
|
|
local IFS=$'\n'
|
|
compopt -o filenames
|
|
COMPREPLY=( $(compgen -f -- $cur) )
|
|
return 0
|
|
}
|
|
complete -F _fedabipkgdiff_module fedabipkgdiff
|