diff options
author | Erich Eckner <git@eckner.net> | 2019-08-19 22:12:33 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-02-19 09:52:08 +0100 |
commit | 297d4eb9506a973bc1900c5f408a9c34d7510400 (patch) | |
tree | 8989f6cf03d4a791c58434cdf6e3007ea91784a9 /makechrootpkg.in | |
parent | da6fc9b8d939a442fba1aa9cc5ebd93b975347b8 (diff) | |
download | devtools32-297d4eb9506a973bc1900c5f408a9c34d7510400.tar.xz |
makechrootpkg & mkarchroot: init and populate keyrings
We had trouble in the past with not properly initialized keyrings.
This change aims at fixing this.
Diffstat (limited to 'makechrootpkg.in')
-rw-r--r-- | makechrootpkg.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in index a9591ba..d38a6cd 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -212,6 +212,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. |