You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
912 B
35 lines
912 B
4 months ago
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
_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
|
||
|
--clean-cache
|
||
|
--clean-cache-before
|
||
|
--clean-cache-after
|
||
|
--self-compare"
|
||
|
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
|