diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 22:58:47 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 22:58:47 -0500 |
commit | 52eb2155eac25cea05e4ec16e584a6344503bbd4 (patch) | |
tree | abfc526009f89d475023d1241d1369cf737f1b3b /mountvirtfs.sh | |
parent | 0d04ff23ea2e08ff9ec4a192e3f56f7e7e29c5e6 (diff) |
Use intense green for OK.
Diffstat (limited to 'mountvirtfs.sh')
-rw-r--r-- | mountvirtfs.sh | 4 |
1 files changed, 3 insertions, 1 deletions
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" |