Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-03-02 23:23:55 -0500
committerAllan McRae <allan@archlinux.org>2021-03-06 12:01:26 +1000
commitede73f4d898946a7e54634169b3605a024553315 (patch)
treebfa6a4e4a50eb1e77943259d18b7a2b045eeafa9
parentc118a61f62a4b100b01504dfc5611cd08fb9e537 (diff)
fix syntax error when running pacman-key --help
In commit 0f75ab3224141a5e8a4fe72b48b4639c83c6316b some unbalanced quotes were added by the committer while editing an error message. Fixes FS#69865 Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/pacman-key.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
index 35a3b4da..50342649 100644
--- a/scripts/pacman-key.sh.in
+++ b/scripts/pacman-key.sh.in
@@ -564,7 +564,7 @@ refresh_keys() {
# if no key was found, fall back to using the keyservers (with the key fingerprint instead)
if (( $? )) && ! "${GPG_PACMAN[@]}" --refresh-keys "$id"; then
- error "$(gettext "Could not update key: %s") "$id"
+ error "$(gettext "Could not update key: %s")" "$id"
ret=1
fi
done