summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2021-01-14 05:06:01 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2021-01-23 00:54:33 -0500
commitf826ac534156270dd126285ae68d571fd877e259 (patch)
tree7c26e6d4e7a65e7cc4c218017a17dd09a70d5e3e
parent5537881b2525a4f114fcf10b00413b4575a74968 (diff)
makepkg: check signatures before checksums
-rw-r--r--scripts/libmakepkg/integrity.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/libmakepkg/integrity.sh.in b/scripts/libmakepkg/integrity.sh.in
index b94b196c..11da67e1 100644
--- a/scripts/libmakepkg/integrity.sh.in
+++ b/scripts/libmakepkg/integrity.sh.in
@@ -39,7 +39,7 @@ check_source_integrity() {
warning "$(gettext "Skipping verification of source file PGP signatures.")"
check_checksums "$@"
else
- check_checksums "$@"
check_pgpsigs "$@"
+ check_checksums "$@"
fi
}