From 9179cc94f4aeef89bb21e221d87be40d25b05527 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Fri, 20 Dec 2024 09:51:57 -0500 Subject: [PATCH] installer.sh: put reconfigure output in a programbox fixes: #172 --- installer.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/installer.sh b/installer.sh index ff3148d..8178103 100755 --- a/installer.sh +++ b/installer.sh @@ -1254,7 +1254,11 @@ install_packages() { DIE 1 fi xbps-reconfigure -r $TARGETDIR -f base-files >/dev/null 2>&1 - chroot $TARGETDIR xbps-reconfigure -a + stdbuf -oL chroot $TARGETDIR xbps-reconfigure -a 2>&1 | \ + DIALOG --title "Configuring base system packages..." --programbox 24 80 + if [ $? -ne 0 ]; then + DIE 1 + fi } enable_service() {