diff options
-rwxr-xr-x | lfs.sh | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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 |