Skip to content

Commit

Permalink
medcom-wide/make-sdcard: fix coloured output
Browse files Browse the repository at this point in the history
Change-Id: I90602f8e4f085ff26cb3490f84930618a170321c
Signed-off-by: Bert van Hall <bert.vanhall@avionic-design.de>
Reviewed-on: http://review.adnet.avionic-design.de/5445
Reviewed-by: Dirk Leber <dirk.leber@avionic-design.de>
  • Loading branch information
Bert van Hall authored and dirkleber committed Apr 20, 2016
1 parent ee6e229 commit 9283572
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions medcom-wide/make-sdcard
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ log_action_begin_msg()
log_action_end_msg()
{
if test $1 -eq 0; then
echo "\033[32m done"
echo -e "\033[0;32m done"
else
echo "\033[31m failed"
echo -e "\033[0;31m failed"
fi
echo "\033[0m"
echo -e "\033[m"
}

wait_for_partition()
Expand Down

0 comments on commit 9283572

Please sign in to comment.