From 2f294480a9db0b180c5205d22f0e264697b3e289 Mon Sep 17 00:00:00 2001 From: Kevin Morris Date: Sun, 23 Jan 2022 15:44:58 -0800 Subject: [PATCH] docker: simplify keyring update - this wasn't using .pkg-cache before; we should, in case we already have the updated package downloaded. Signed-off-by: Kevin Morris --- docker/scripts/install-deps.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docker/scripts/install-deps.sh b/docker/scripts/install-deps.sh index ced18c81..72b291c6 100755 --- a/docker/scripts/install-deps.sh +++ b/docker/scripts/install-deps.sh @@ -5,11 +5,7 @@ set -eou pipefail # Update and rollout archlinux-keyring keys. -pacman-key --init -pacman-key --updatedb -pacman-key --populate - -pacman -Sy --noconfirm --noprogressbar archlinux-keyring +pacman -Sy --noconfirm --noprogressbar --cachedir .pkg-cache archlinux-keyring # Install other OS dependencies. pacman -Syu --noconfirm --noprogressbar \