From 5613c139acabd18c525cfc48a157f368ceb296de Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 11:22:52 -0500 Subject: Exit if creationg of LFS target directory fails. --- lfs.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'lfs.sh') 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 -- cgit v1.2.3-54-g00ecf