diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:24:19 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:24:19 -0500 |
commit | 47d79ddcb73cd843cdd52de67e8d421e6fef4d5a (patch) | |
tree | 553e4f5bb6c807619540d508bd2efe17d0bdd2a4 /lfs.sh | |
parent | e7a20b39f18b37ae96552bcbf7b6e9679af20677 (diff) |
Formatting changes of printf's.
Diffstat (limited to 'lfs.sh')
-rwxr-xr-x | lfs.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |