This is an automated email from the git hooks/post-receive script. mattia pushed a commit to branch master in repository devscripts.
commit 153923268f15b2dff12840150fa06528327a2930 Author: Cyril Brulebois <[email protected]> Date: Sun Oct 1 21:10:26 2017 +0200 debsign: Fix bash completion. Use file extensions instead of globs. Closes: #877440 Signed-off-by: Mattia Rizzolo <[email protected]> --- debian/changelog | 4 ++++ scripts/debsign.bash_completion | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index dd2ecc7..b932013 100644 --- a/debian/changelog +++ b/debian/changelog @@ -28,6 +28,10 @@ devscripts (2.17.11) UNRELEASED; urgency=medium [ Christoph Berg ] * origtargz: Allow invocation from subdirectory. (Closes: #702636) + [ Cyril Brulebois ] + * debsign: Fix bash completion by using file extensions instead of + using globs. Closes: #877440 + -- Chris Lamb <[email protected]> Wed, 27 Sep 2017 13:24:39 +0100 devscripts (2.17.10) unstable; urgency=medium diff --git a/scripts/debsign.bash_completion b/scripts/debsign.bash_completion index 21ea89e..ebaaa7f 100644 --- a/scripts/debsign.bash_completion +++ b/scripts/debsign.bash_completion @@ -19,10 +19,10 @@ _debsign() ;; *) COMPREPLY=( $( - compgen -G "${cur}*.changes" - compgen -G "${cur}*.buildinfo" - compgen -G "${cur}*.dsc" - compgen -G "${cur}*.commands" + compgen -f -X "!*.changes" -- "$cur" + compgen -f -X "!*.buildinfo" -- "$cur" + compgen -f -X "!*.dsc" -- "$cur" + compgen -f -X "!*.commands" -- "$cur" compgen -W "$options" | grep "^$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
