fix keyring installation in setup

This commit is contained in:
Tobias Powalowski 2022-10-04 20:34:25 +02:00
parent 24e1fbd781
commit c0e9559771

View file

@ -117,7 +117,7 @@ prepare_pacman() {
KEYRING="archlinux-keyring" KEYRING="archlinux-keyring"
[[ "${RUNNING_ARCH}" == "aarch64" ]] && KEYRING="${KEYRING} archlinuxarm-keyring" [[ "${RUNNING_ARCH}" == "aarch64" ]] && KEYRING="${KEYRING} archlinuxarm-keyring"
#shellcheck disable=SC2086 #shellcheck disable=SC2086
pacman -Sy "${PACMAN_CONF}" --noconfirm --noprogressbar ${KEYRING} > "${LOG}" 2>&1 || (DIALOG --msgbox "Keyring update failed! Check ${LOG} for errors." 6 60; return 1) pacman -Sy ${PACMAN_CONF} --noconfirm --noprogressbar ${KEYRING} > "${LOG}" 2>&1 || (DIALOG --msgbox "Keyring update failed! Check ${LOG} for errors." 6 60; return 1)
} }
# Set PACKAGES parameter before running to install wanted packages # Set PACKAGES parameter before running to install wanted packages