fix box size

This commit is contained in:
Tobias Powalowski 2023-01-25 20:01:38 +01:00
parent fa9485559c
commit 9ef552f495

View file

@ -214,7 +214,7 @@ _mountpoints() {
if [[ -z "${_SWAP_DONE}" ]]; then if [[ -z "${_SWAP_DONE}" ]]; then
if ! [[ "${_DEV}" == "NONE" ]]; then if ! [[ "${_DEV}" == "NONE" ]]; then
if ! [[ "${_FSTYPE}" == "swap" ]]; 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="" _MP_DONE=""
else else
_MP_DONE=1 _MP_DONE=1
@ -224,14 +224,14 @@ _mountpoints() {
fi fi
elif [[ -z "${_ROOT_DONE}" ]]; then elif [[ -z "${_ROOT_DONE}" ]]; then
if [[ "${_FSTYPE}" == "vfat" ]]; 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="" _MP_DONE=""
else else
_MP_DONE=1 _MP_DONE=1
fi fi
elif [[ -z "${_UEFISYSDEV_DONE}" ]]; then elif [[ -z "${_UEFISYSDEV_DONE}" ]]; then
if ! [[ "${_FSTYPE}" == "vfat" ]]; 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="" _MP_DONE=""
else else
_MP_DONE=1 _MP_DONE=1