diff options
Diffstat (limited to 'contrib/bash_completion.in')
-rw-r--r-- | contrib/bash_completion.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |