From 0d04ff23ea2e08ff9ec4a192e3f56f7e7e29c5e6 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 22:58:30 -0500 Subject: Add new line after cleanup already performed message. --- chapter6/cleanup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter6/cleanup.sh b/chapter6/cleanup.sh index 1a82633..2db4067 100644 --- a/chapter6/cleanup.sh +++ b/chapter6/cleanup.sh @@ -1,7 +1,7 @@ #!/bin/bash if [ -f "${LFS}/sources/chapter6/cleanup" ]; then - printf "%b" " ${IGRN}Cleanup already performed${RST}" + printf "%b" " ${IGRN}Cleanup already performed${RST}\n" else printf "%b" "${GRN}Cleaning up ${YLW}${LFS}${RST}... " -- cgit v1.2.3-54-g00ecf From 52eb2155eac25cea05e4ec16e584a6344503bbd4 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 22:58:47 -0500 Subject: Use intense green for OK. --- mountvirtfs.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mountvirtfs.sh b/mountvirtfs.sh index 4c016e5..ec0262f 100644 --- a/mountvirtfs.sh +++ b/mountvirtfs.sh @@ -1,6 +1,6 @@ #!/bin/bash -printf "%b" "${GRN}Mounting virtual kernel filesystems...${RST}\n" +printf "%b" "${GRN}Mounting virtual kernel filesystems${RST}... " if ! mountpoint "${LFS}"/dev >/dev/null 2>&1; then sudo mount --bind /dev "${LFS}"/dev else @@ -30,3 +30,5 @@ fi if [[ -h "${LFS}"/dev/shm ]]; then sudo mkdir -pv "${LFS}"/"$(readlink "${LFS}"/dev/shm)" fi + +printf "%b" "${IGRN}OK${RST}\n" -- cgit v1.2.3-54-g00ecf