pacman: Recognize *.pkg.tar as valid package extension (#5005)

* pacman: Recognize *.pkg.tar as valid package extension
This commit is contained in:
Luca Weiss 2018-05-27 00:41:46 +02:00 committed by ridiculousfish
parent b7db397f61
commit c1af560753

View File

@ -134,5 +134,4 @@ complete -c $progname -n "$files" -l machinereadable -d 'Show in machine readabl
# Theoretically, pacman reads packages in all formats that libarchive supports
# In practice, it's going to be tar.xz or tar.gz
# Using "pkg.tar.*" here would change __fish_complete_suffix's descriptions to "unknown"
complete -c $progname -n "$upgrade" -xa '(__fish_complete_suffix pkg.tar.xz)' -d 'Package file'
complete -c $progname -n "$upgrade" -xa '(__fish_complete_suffix pkg.tar.gz)' -d 'Package file'
complete -c $progname -n "$upgrade" -xa '(__fish_complete_suffix .pkg.tar\{,.xz,.gz\})' -d 'Package file'