fix syntax error when running pacman-key --help
In commit 0f75ab3224
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>
This commit is contained in:
parent
c118a61f62
commit
ede73f4d89
1 changed files with 1 additions and 1 deletions
|
@ -564,7 +564,7 @@ refresh_keys() {
|
||||||
|
|
||||||
# if no key was found, fall back to using the keyservers (with the key fingerprint instead)
|
# if no key was found, fall back to using the keyservers (with the key fingerprint instead)
|
||||||
if (( $? )) && ! "${GPG_PACMAN[@]}" --refresh-keys "$id"; then
|
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
|
ret=1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue