summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2017-07-03 23:13:23 -0400
committerAllan McRae <allan@archlinux.org>2017-07-06 12:55:45 +1000
commitd4193d43cf5346b3a8cfc97a4fc354111df34081 (patch)
tree7a7ad8bf25d9e3ba1f60a87353f4d6fc7c6359ca
parent9c604af0a04cefaccba527e00d31d9ccd724f866 (diff)
downloadpacman-d4193d43cf5346b3a8cfc97a4fc354111df34081.tar.gz
pacman-d4193d43cf5346b3a8cfc97a4fc354111df34081.zip
libmakepkg/integrity: Fix error message not sent to stderr
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/libmakepkg/integrity/verify_signature.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/libmakepkg/integrity/verify_signature.sh.in b/scripts/libmakepkg/integrity/verify_signature.sh.in
index b5577523..5468f977 100644
--- a/scripts/libmakepkg/integrity/verify_signature.sh.in
+++ b/scripts/libmakepkg/integrity/verify_signature.sh.in
@@ -84,7 +84,7 @@ check_pgpsigs() {
printf "%s ($(gettext "the public key %s is not trusted"))" $(gettext "FAILED") "$fingerprint" >&2
errors=1
elif (( ${#validpgpkeys[@]} > 0 )) && ! in_array "$fingerprint" "${validpgpkeys[@]}"; then
- printf "%s (%s %s)" "$(gettext "FAILED")" "$(gettext "invalid public key")" "$fingerprint"
+ printf "%s (%s %s)" "$(gettext "FAILED")" "$(gettext "invalid public key")" "$fingerprint" >&2
errors=1
else
printf '%s' "$(gettext "Passed")" >&2