diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-12-24 03:06:36 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-12-27 08:08:33 +0100 |
commit | 7c0ff7f4b7a88e10e8e9c3f4b90ca359eb0babef (patch) | |
tree | 51a1c4060b5888f733afc49f7023d632210535ce | |
parent | 763fb3d9e7b82288f825f0038f2873eaec43ae08 (diff) | |
download | pacman-7c0ff7f4b7a88e10e8e9c3f4b90ca359eb0babef.tar.gz pacman-7c0ff7f4b7a88e10e8e9c3f4b90ca359eb0babef.tar.xz |
makepkg: call out the source array(s) missing checksums
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
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 } |