From 90a8e72e5868b17fba14337a4a1038992fd82857 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 27 Dec 2021 23:12:53 -0300 Subject: [PATCH] Fix bug --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 04e1355..6bc7916 100755 --- a/install.sh +++ b/install.sh @@ -161,7 +161,7 @@ getThePackages() { } installImportantPackages() { - calcHeightAndRun "whiptail --msgbox \"We will start by installing some important packages in the background. Please press OK and wait.\" 8 HEIGHT" + calcHeightAndRun "whiptail --msgbox \"We will start by installing some important packages in the background. Please press OK and wait.\" 8 HEIGHT 3>&1 1>&2 2>&3" getThePackages "Y" "installImportantPackages" runInChroot "systemctl enable NetworkManager; systemctl enable fstrim.timer" 2> /dev/null } @@ -274,7 +274,7 @@ EOF } installNotImportantPackages() { - calcHeightAndRun "whiptail --msgbox \"Now, we will install a few more packages (in the background). Press OK and wait (it may take some time).\" 8 HEIGHT" + calcHeightAndRun "whiptail --msgbox \"Now, we will install a few more packages (in the background). Press OK and wait (it may take some time).\" 8 HEIGHT 3>&1 1>&2 2>&3" checkForParu getThePackages "N" "installNotImportantPackages" }