aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlfs.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/lfs.sh b/lfs.sh
index c2bcc07..2403870 100755
--- a/lfs.sh
+++ b/lfs.sh
@@ -44,9 +44,16 @@ else
exit 1
fi
-printf "%b" "${GRN}Creating LFS directory at ${YLW}${LFS}${GRN} if it does not exist...${RST}\n"
# Create LFS directory if it doesn't exist
-[[ -d /mnt/lfs ]] || sudo mkdir "${LFS}"
+printf "%b" "${GRN}Creating LFS directory at ${YLW}${LFS}${GRN}... ${RST}"
+if [[ -d "${LFS}" ]]; then
+ printf "%b" "${IGRN}EXISTS${RST}\n"
+else
+ if ! mkdir "${LFS}" >/dev/null 2>&1; then
+ printf "%b" "${IRED}FAILED!${RST}\n"
+ exit 1
+ fi
+fi
# Setup partition, filesystem, format and mount if
# LFS filesystem is not previously mounted