From f521caabc41c76891598d4a971dd2f16fcc733e0 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 8 Jul 2024 07:18:14 +0200 Subject: [PATCH] abort on pacman error --- usr/lib/archboot/installer/pacman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/pacman.sh b/usr/lib/archboot/installer/pacman.sh index b53570a37..c6389b5da 100644 --- a/usr/lib/archboot/installer/pacman.sh +++ b/usr/lib/archboot/installer/pacman.sh @@ -71,7 +71,7 @@ _install_packages() { _PACKAGES="${_PACKAGES// / }" _dialog --title " Summary " --yesno "Next step will install the following packages for a minimal system:\n${_PACKAGES}\n\nYou can watch the progress on your ${_VC} console." 9 75 || return 1 _run_pacman | _dialog --title " Logging to ${_VC} | ${_LOG} " --gauge "Installing package(s):\n${_PACKAGES}..." 8 75 0 - _pacman_error + _pacman_error || return 1 _NEXTITEM=3 _chroot_mount # automagic time!