From 53e1e78679803c66cb63bda9e2441a219f18680e Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 3 Jan 2022 21:48:59 -0300 Subject: [PATCH] Fix the last (at least for now) bug in mountPart() --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index 538a906..d04b008 100755 --- a/install.sh +++ b/install.sh @@ -174,6 +174,8 @@ mountPart() { bootPath=$(echo $result | sed 's/^\///g') mkdir -p "/mnt/$bootPath" done + else + mkdir -p "/mnt/$bootPath" fi mount "$bootPart" "/mnt/$bootPath" 2>&1 | debug else