index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2012-01-08 12:14:04 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-01-08 12:14:04 -0600 |
commit | 4f02b98338437b9395addb29000893b91d1ae21e (patch) | |
tree | 986568d1e64bea1bde6ff287ed5a2629e7f8136f /contrib/bash_completion.in | |
parent | 7f51ba99ae6db204d69ce271cd5cc4e959135738 (diff) | |
parent | 73d0d743bda5367fcab2453bbe21c15e481150c2 (diff) |
-rw-r--r-- | contrib/bash_completion.in | 4 |
diff --git a/contrib/bash_completion.in b/contrib/bash_completion.in index eb31b5e5..d9f8d826 100644 --- a/contrib/bash_completion.in +++ b/contrib/bash_completion.in @@ -113,12 +113,12 @@ _pacman() { if [[ $(type -t compopt) = "builtin" ]]; then _pacman_file() { - compopt -o filenames; _filedir 'pkg.tar.*' + compopt -o filenames; _filedir 'pkg.tar*' } complete -F _pacman -o default pacman else _pacman_file() { - _filedir 'pkg.tar.*' + _filedir 'pkg.tar*' } complete -F _pacman -o filenames -o default pacman fi |