simplify package installation message

This commit is contained in:
Tobias Powalowski 2022-03-22 14:04:09 +01:00
parent 2ec4a215c6
commit a544a11f3c

View file

@ -164,7 +164,7 @@ install_packages() {
PACKAGES=$(grep '^_PACKAGES' /etc/archboot/defaults | sed -e 's#_PACKAGES=##g' -e 's#"##g')
# fallback if _PACKAGES is empty
[[ -z "${PACKAGES}" ]] && PACKAGES="base linux linux-firmware"
DIALOG --yesno "Next step will install ${PACKAGES}, netctl and filesystem tools for a minimal system.\nYou can watch the output in the progress window. Please be patient.\n\nDo you wish to continue?" 10 50 || return 1
DIALOG --yesno "Next step will install ${PACKAGES}, netctl and filesystem tools for a minimal system.\n\nYou can watch the output in the progress window.\nPlease be patient.\n\nDo you wish to continue?" 10 50 || return 1
auto_packages
run_pacman
NEXTITEM="6"