mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
makepkg: add missing newline on passing gpg sourcecheck
When a sourceball passes this check without any warnings, a newline is omitted. Similar to the if clause of this else block, print a single new line at the end of the clause instead of accounting for each output. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
This commit is contained in:
parent
0f69e2ec0b
commit
d1e04c1b67
@ -742,18 +742,19 @@ check_pgpsigs() {
|
||||
printf '\n' >&2
|
||||
else
|
||||
if grep -q "REVKEYSIG" "$statusfile"; then
|
||||
printf '%s (%s)\n' "$(gettext "FAILED")" "$(gettext "the key has been revoked.")" >&2
|
||||
printf '%s (%s)' "$(gettext "FAILED")" "$(gettext "the key has been revoked.")" >&2
|
||||
errors=1
|
||||
else
|
||||
printf '%s' "$(gettext "Passed")" >&2
|
||||
if grep -q "EXPSIG" "$statusfile"; then
|
||||
printf ' (%s)\n' "$(gettext "WARNING:") $(gettext "the signature has expired.")" >&2
|
||||
printf ' (%s)' "$(gettext "WARNING:") $(gettext "the signature has expired.")" >&2
|
||||
warnings=1
|
||||
elif grep -q "EXPKEYSIG" "$statusfile"; then
|
||||
printf ' (%s)\n' "$(gettext "WARNING:") $(gettext "the key has expired.")" >&2
|
||||
printf ' (%s)' "$(gettext "WARNING:") $(gettext "the key has expired.")" >&2
|
||||
warnings=1
|
||||
fi
|
||||
fi
|
||||
printf '\n' >&2
|
||||
fi
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user