This is an automated email from the git hooks/post-receive script. pabs pushed a commit to branch master in repository devscripts.
commit 3a30d733f3bbd12742723f31ffd6260e20fdbc42 Author: Paul Wise <[email protected]> Date: Mon Jul 18 12:00:29 2016 +0800 dscverify: Fix bash completion of the --no-conf option --- debian/changelog | 2 ++ scripts/dscverify.bash_completion | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3b9e5a0..6095c13 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ devscripts (2.16.7) UNRELEASED; urgency=medium * grep-excuses: + Fix the script for the removal of testing.pl from release.debian.org + * dscverify: + + Fix bash completion of the --no-conf option -- Paul Wise <[email protected]> Fri, 15 Jul 2016 22:36:19 +0800 diff --git a/scripts/dscverify.bash_completion b/scripts/dscverify.bash_completion index c977762..11c88fb 100644 --- a/scripts/dscverify.bash_completion +++ b/scripts/dscverify.bash_completion @@ -11,7 +11,7 @@ _dscverify() if [[ "$cur" == -* ]]; then _options='--keyring --no-default-keyrings --no-sig-check --verbose' - if [[ "$prev" == licensecheck ]]; then + if [[ "$prev" == dscverify ]]; then _options+=' --no-conf' fi COMPREPLY=( $( compgen -W "${_options}" -- "$cur" ) ) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
