aboutsummaryrefslogtreecommitdiffstats
path: root/lfs.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-04-01 14:24:29 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-04-01 14:24:29 -0500
commitf1d3ffce825ce5f2e46d193efb0cdb172c5098eb (patch)
tree23d7b7ea5620d69030e7767635849db7df9b2ae6 /lfs.sh
parentcca9ac8d40bfe02ebec8b8f74b146c1a0aab3916 (diff)
parent47d79ddcb73cd843cdd52de67e8d421e6fef4d5a (diff)
Merge branch 'cleanup' into chapter7
Diffstat (limited to 'lfs.sh')
-rwxr-xr-xlfs.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/lfs.sh b/lfs.sh
index a7ef6e2..40ec310 100755
--- a/lfs.sh
+++ b/lfs.sh
@@ -32,13 +32,13 @@ before continuing.${RST}\n\n\n"
printf "%b" "${IGRN}CONTINUE ${IWHTB}(C)${RST} / ${IRED}ABORT ${IWHTB}(OTHER)${RST}\n"
if read -r -n 1 contabort; then
if [ "$contabort" == "C" ] || [ "$contabort" == "c" ]; then
- printf "%b" "\b${IWHT}Build is ${IGRN}CONTINUING${RST}\n"
+ printf "%b" "\b${IWHT}Build is ${IGRN}CONTINUING${RST}\n\n"
else
- printf "%b" "\b${IWHT}Build ${IRED}ABORTED!\n"
+ printf "%b" "\b${IWHT}Build ${IRED}ABORTED!\n\n"
exit 0
fi
else
- printf "%b" "\b${IWHT}Selection ${IRED}FAILURE!${RST}\n"
+ printf "%b" "\b${IWHT}Selection ${IRED}FAILURE!${RST}\n\n"
exit 1
fi
@@ -55,7 +55,7 @@ if ! grep -q "${LFS}" /proc/mounts; then
printf "%b" " ${IGRN}Mounting ${IWHT}${LFS_DISK}${LFS_PART} ${IGRN}at \
${IWHT}${LFS}${RST}\n"
sudo mount "${LFS_DISK}${LFS_PART}" "${LFS}"
- printf "%b" " ${IGRN}Changing ownership of ${IWHT}${LFS} ${IGRN} \
+ printf "%b" " ${IGRN}Changing ownership of ${IWHT}${LFS}${IGRN} \
to user ${IWHT}${USER}${RST}\n"
sudo chown "${USER}" "${LFS}"
fi