summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-12-23 21:06:36 -0500
committerAllan McRae <allan@archlinux.org>2014-12-27 17:08:33 +1000
commit7c0ff7f4b7a88e10e8e9c3f4b90ca359eb0babef (patch)
tree51a1c4060b5888f733afc49f7023d632210535ce
parent763fb3d9e7b82288f825f0038f2873eaec43ae08 (diff)
downloadpacman-7c0ff7f4b7a88e10e8e9c3f4b90ca359eb0babef.tar.gz
pacman-7c0ff7f4b7a88e10e8e9c3f4b90ca359eb0babef.zip
makepkg: call out the source array(s) missing checksums
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index ab4a784b..c6892821 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1352,7 +1352,7 @@ check_checksums() {
done
if (( ${#correlation[*]} )); then
- error "$(gettext "Integrity checks are missing.")"
+ error "$(gettext "Integrity checks are missing for: %s")" "${!correlation[*]}"
exit 1 # TODO: error code
fi
}