From 9ef552f495083853f75bc600d9b239e58724b76b Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 25 Jan 2023 20:01:38 +0100 Subject: [PATCH] fix box size --- usr/lib/archboot/installer/mountpoints.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/lib/archboot/installer/mountpoints.sh b/usr/lib/archboot/installer/mountpoints.sh index b8e6dfd95..7546c545e 100644 --- a/usr/lib/archboot/installer/mountpoints.sh +++ b/usr/lib/archboot/installer/mountpoints.sh @@ -214,7 +214,7 @@ _mountpoints() { if [[ -z "${_SWAP_DONE}" ]]; then if ! [[ "${_DEV}" == "NONE" ]]; then if ! [[ "${_FSTYPE}" == "swap" ]]; then - _dialog --msgbox "Error: SWAP PARTITION has not a swap filesystem." 5 50 + _dialog --msgbox "Error: SWAP PARTITION has not a swap filesystem." 5 60 _MP_DONE="" else _MP_DONE=1 @@ -224,14 +224,14 @@ _mountpoints() { fi elif [[ -z "${_ROOT_DONE}" ]]; then if [[ "${_FSTYPE}" == "vfat" ]]; then - _dialog --msgbox "Error: ROOT DEVICE has a vfat filesystem." 5 50 + _dialog --msgbox "Error: ROOT DEVICE has a vfat filesystem." 5 60 _MP_DONE="" else _MP_DONE=1 fi elif [[ -z "${_UEFISYSDEV_DONE}" ]]; then if ! [[ "${_FSTYPE}" == "vfat" ]]; then - _dialog --msgbox "Error: EFI SYSTEM PARTITION has not a vfat filesystem." 5 50 + _dialog --msgbox "Error: EFI SYSTEM PARTITION has not a vfat filesystem." 5 60 _MP_DONE="" else _MP_DONE=1