summaryrefslogtreecommitdiffstats
path: root/tools/check_diskspace
diff options
context:
space:
mode:
authorOle Kristian Lien <ole.k.lien@gmail.com>2010-01-14 08:19:30 +0000
committerOle Kristian Lien <ole.k.lien@gmail.com>2010-01-14 08:19:30 +0000
commit8f002067fcf300234be68bd2b01b178c931bb2fe (patch)
tree416fc47b19dfeed5b66ddc8fa175d28f09b5e3a2 /tools/check_diskspace
parent9b6e7c30bc1687c10c49413871588d17baf1b94f (diff)
div. fix
Diffstat (limited to 'tools/check_diskspace')
-rw-r--r--tools/check_diskspace4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/check_diskspace b/tools/check_diskspace
index d30f5e5..b8a3520 100644
--- a/tools/check_diskspace
+++ b/tools/check_diskspace
@@ -14,9 +14,11 @@ if [ -z "$1" ]; then
exit 1
fi
-echo "Checking for enough disk space to continue..."
+echo -n " * Checking for enough disk space to continue..."
if [ $DISK -le $FILE ]; then
echo "Error: Not enough disk space to continue! Aborting."
exit 1
fi
+
+echo -e "OK!"