|
From: <za...@us...> - 2006-03-30 22:29:46
|
Revision: 19 Author: zaufi Date: 2006-03-30 14:29:39 -0800 (Thu, 30 Mar 2006) ViewCVS: http://svn.sourceforge.net/halfs/?rev=19&view=rev Log Message: ----------- make it more gentoo like Modified Paths: -------------- admin/trunk/devel.d/01-echo.sh Modified: admin/trunk/devel.d/01-echo.sh =================================================================== --- admin/trunk/devel.d/01-echo.sh 2006-03-30 22:26:46 UTC (rev 18) +++ admin/trunk/devel.d/01-echo.sh 2006-03-30 22:29:39 UTC (rev 19) @@ -89,19 +89,28 @@ function eerror() { inc_lines_printed - echo -e "*** Error: $1" | tee -a ${log} + set_color ${COLOR_SUCCESS} + echo -n " * " + set_color ${COLOR_FAILURE} + echo -e "Error: $1" | tee -a ${log} } function ewarning() { inc_lines_printed - echo -e "*** Warning: $1" | tee -a ${log} + set_color ${COLOR_SUCCESS} + echo -n " * " + set_color ${COLOR_WARNING} + echo -e "Warning: $1" | tee -a ${log} } function einfo() { inc_lines_printed - echo -e "*** $1" | tee -a ${log} + set_color ${COLOR_SUCCESS} + echo -n " * " + set_color ${COLOR_NORMAL} + echo -e "$1" | tee -a ${log} } function eecho() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |