index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Eli Schwartz <eschwartz93@gmail.com> | 2017-07-03 23:13:23 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2017-07-06 12:55:45 +1000 |
commit | d4193d43cf5346b3a8cfc97a4fc354111df34081 (patch) | |
tree | 7a7ad8bf25d9e3ba1f60a87353f4d6fc7c6359ca /scripts/libmakepkg | |
parent | 9c604af0a04cefaccba527e00d31d9ccd724f866 (diff) |
-rw-r--r-- | scripts/libmakepkg/integrity/verify_signature.sh.in | 2 |
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 |