From d85421ec62cdcd0b4b1f162b9908dc3eb0b704b4 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 18 Feb 2010 05:18:10 +0100 Subject: contrib/*_completion: match *.pkg.tar.* Signed-off-by: Pierre Schmitz Signed-off-by: Dan McGee --- contrib/bash_completion | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/bash_completion') diff --git a/contrib/bash_completion b/contrib/bash_completion index 62e5bc95..a231eb69 100644 --- a/contrib/bash_completion +++ b/contrib/bash_completion @@ -321,7 +321,7 @@ _pacman () case "${op}" in U) COMPREPLY=( $( compgen -d -- "$cur" ) \ - $( compgen -f -X '!*.pkg.tar.gz' -- "$cur" ) ) + $( compgen -f -X '!*.pkg.tar.*' -- "$cur" ) ) return 0 ;; h|V) @@ -336,7 +336,7 @@ _pacman () $( compgen -f -- "$cur" ) ) elif _instring $mod p; then COMPREPLY=( $( compgen -d -- "$cur" ) \ - $( compgen -f -X '!*.pkg.tar.gz' -- "$cur" ) ) + $( compgen -f -X '!*.pkg.tar.*' -- "$cur" ) ) elif _instring $mod u; then COMPREPLY='' return 0 -- cgit v1.2.3-2-g168b