From 4d8107040cb918b51ae641d2d4b0d0560b05bc34 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 3 Jan 2022 21:10:23 -0300 Subject: [PATCH] Fix another bug --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 0197a35..b464025 100755 --- a/install.sh +++ b/install.sh @@ -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')