From foxboron at archlinux.org Sun Jan 10 16:08:44 2021 From: foxboron at archlinux.org (foxboron at archlinux.org) Date: Sun, 10 Jan 2021 17:08:44 +0100 Subject: [PATCH] pacman-key: Close msg string in generate_master_key Message-ID: <20210110160844.2915450-1-foxboron@archlinux.org> From: Morten Linderud In 19980a61e9ed9b9a57520aaa919c40a4b5311f87 there was a msg added which didn't get the string closed. Signed-off-by: Morten Linderud --- scripts/pacman-key.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in index 59162840..c65669f5 100644 --- a/scripts/pacman-key.sh.in +++ b/scripts/pacman-key.sh.in @@ -145,7 +145,7 @@ key_lookup_from_name() { generate_master_key() { # Generate the master key, which will be in both pubring and secring - msg "$(gettext "Generating pacman master key. This may take some time.") + msg "$(gettext "Generating pacman master key. This may take some time.")" "${GPG_PACMAN[@]}" --gen-key --batch <