Fix another bug

This commit is contained in:
Santiago Lo Coco 2022-01-03 21:10:23 -03:00
parent 710de9a142
commit 4d8107040c
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ mountPart() {
exitIfCancel "You must enter a path." "partDisks"
bootPath=$(echo $result | sed 's/^\///g')
mkdir -p "/mnt/$bootPath"
while [[ ! -d "$result" ]]; do
while [[ ! -d "/mnt/$result" ]]; do
result=$(whiptail --inputbox "Path isn't valid. Please try again" 0 0 3>&1 1>&2 2>&3)
exitIfCancel "You must enter a path." "partDisks"
bootPath=$(echo $result | sed 's/^\///g')