aboutsummaryrefslogtreecommitdiffstats
path: root/mountvirtfs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'mountvirtfs.sh')
-rw-r--r--mountvirtfs.sh4
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"