summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-11-24 14:12:19 +0100
committerErich Eckner <git@eckner.net>2018-05-16 16:39:44 +0200
commitd89e7aa512365475030c4431137f750e42f3644c (patch)
treeb5029d765f074a22d622b1b9b70508b06cdde7d3
parent0cb24954218abab7a25506e6148180f94e6f6be4 (diff)
downloaddevtools32-d89e7aa512365475030c4431137f750e42f3644c.tar.xz
makechrootpkg.in: add "pacman-key --populate" before calling "makepkg" to be sure to have a current pacman keyring
-rw-r--r--makechrootpkg.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index 7235921..fd9511b 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -227,6 +227,9 @@ _chrootbuild() {
# shellcheck source=/dev/null
. /etc/profile
+ # otherwise we might have missing keys
+ pacman-key --populate
+
# Beware, there are some stupid arbitrary rules on how you can
# use "$" in arguments to commands with "sudo -i". ${foo} or
# ${1} is OK, but $foo or $1 isn't.