diff options
author | Dan McGee <dan@archlinux.org> | 2011-11-07 16:16:10 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-11-07 16:16:10 +0100 |
commit | 1a994bf180003b814b135a5acd6f3e2aa67121fc (patch) | |
tree | 98f542ca7515e911f2bbd6549ef62f78f3269fe7 /scripts | |
parent | 90477f156c18659eee6e8be75122169060309990 (diff) | |
parent | e7b56f48d704f57f023d7ca3cdc9d492fb31a9cb (diff) | |
download | pacman-1a994bf180003b814b135a5acd6f3e2aa67121fc.tar.gz pacman-1a994bf180003b814b135a5acd6f3e2aa67121fc.tar.xz |
Merge branch 'maint'
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 3085bf59..5d048d28 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -334,7 +334,7 @@ in_array() { source_has_signatures(){ local file for file in "${source[@]}"; do - if [[ $file = *.@(sig|asc) ]]; then + if [[ $file = *.@(sig?(n)|asc) ]]; then return 0 fi done @@ -704,7 +704,7 @@ check_pgpsigs() { for file in "${source[@]}"; do file="$(get_filename "$file")" - if [[ ! $file = *.@(sig|asc) ]]; then + if [[ ! $file = *.@(sig?(n)|asc) ]]; then continue fi |