Fix another bug in mountPart()

This commit is contained in:
Santiago Lo Coco 2022-01-03 21:35:55 -03:00
parent a6cb5b36aa
commit a0cd676c32
1 changed files with 2 additions and 1 deletions

View File

@ -159,8 +159,9 @@ formatPart() {
mountPart() {
mount "$rootPart" /mnt 2>&1 | debug
if [ $autoSelection = false ]; then
bootPath=$(whiptail --title "Select where to mount boot partition." --menu "" 0 0 0 "/boot/efi" "" "/boot" "" "OTHER" "" 3>&1 1>&2 2>&3)
result=$(whiptail --title "Select where to mount boot partition." --menu "" 0 0 0 "/boot/efi" "" "/boot" "" "==OTHER==" "" 3>&1 1>&2 2>&3)
exitIfCancel "You must select a path." "partDisks"
bootPath=$(echo $result | sed 's/^\///g')
if [ "$result" = "OTHER" ]; then
local IFS=' '
result=$(whiptail --inputbox "Enter the absolute path." 0 0 3>&1 1>&2 2>&3)