diff options
author | makefu <github@syntax-fehler.de> | 2013-01-04 11:16:10 +0700 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-01-04 11:16:10 +0700 |
commit | 70519559b2127c594527ee1cccde48b9259dba2f (patch) | |
tree | 769fb92e6a2ca38d42db6f685935f3c9868c0848 | |
parent | cccb26af3cf48fe74e506dd493806701bbdbed5e (diff) |
minikrebs: print dot instead of whole line of output
-rwxr-xr-x | minikrebs/profiles/init | 4 |
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 |