From edfbab37fc20ea92834fe141e901b4e36e454ef0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bid=C5=BEan?= Date: Sun, 16 Mar 2025 15:39:58 +0100 Subject: [PATCH] automatically creating dir --- sd-script.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/sd-script.sh b/sd-script.sh index 1102907..7fc38c6 100755 --- a/sd-script.sh +++ b/sd-script.sh @@ -21,6 +21,7 @@ RED="\e[31m" YELLOW="\e[33m" ENDCOLOR="\e[0m" +mkdir $mntpoint &> /dev/null if $doso mount -U $sd_uuid $mntpoint; then echo -e "[✅]$GREEN Mounted SD successfully$ENDCOLOR" else echo -e "[❌] $RED Failed to mount SD$ENDCOLOR" && exit 1;