Fix more bugs

This commit is contained in:
Santiago Lo Coco 2022-01-28 20:00:55 -03:00
parent f020f8c359
commit 0d65676e80
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ formatPart() {
mountPart() {
mount "$rootPart" /mnt 2>&1 | debug
if [ $autoSelection = false ]; then
result=$(dialog --title "Select where to mount boot partition." --menu "" 0 45 1 "/boot/efi" "" "/boot" "" "==OTHER==" "" 3>&1 1>&2 2>&3)
result=$(dialog --menu "\nSelect where to mount the boot partition." 0 30 4 "/boot/efi" "" "/boot" "" "==OTHER==" "" 3>&1 1>&2 2>&3)
exitIfCancel "You must select a path."
bootPath=$(echo "$result" | sed 's/^\///g')
if [ "$result" = "OTHER" ]; then