diff options
author | Erich Eckner <git@eckner.net> | 2017-11-24 14:12:19 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-05-16 16:39:44 +0200 |
commit | d89e7aa512365475030c4431137f750e42f3644c (patch) | |
tree | b5029d765f074a22d622b1b9b70508b06cdde7d3 | |
parent | 0cb24954218abab7a25506e6148180f94e6f6be4 (diff) | |
download | devtools32-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.in | 3 |
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. |