summaryrefslogtreecommitdiffstats
path: root/minikrebs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-01-04 11:16:10 +0700
committermakefu <github@syntax-fehler.de>2013-01-04 11:16:10 +0700
commit70519559b2127c594527ee1cccde48b9259dba2f (patch)
tree769fb92e6a2ca38d42db6f685935f3c9868c0848 /minikrebs
parentcccb26af3cf48fe74e506dd493806701bbdbed5e (diff)
minikrebs: print dot instead of whole line of output
Diffstat (limited to 'minikrebs')
-rwxr-xr-xminikrebs/profiles/init4
1 files changed, 3 insertions, 1 deletions
diff --git a/minikrebs/profiles/init b/minikrebs/profiles/init
index b7c1e8e9..f20e9b75 100755
--- a/minikrebs/profiles/init
+++ b/minikrebs/profiles/init
@@ -10,7 +10,9 @@ fi
echo
if [ -e ./custom_make ];then
echo "Starting Custom Make"
- sh ./custom_make
+ sh ./custom_make 2>/dev/null | while read line; do
+ echo -n .
+ done
else
echo "No Custom Make Script exists, bailing out!"
exit 1