diff options
author | Daniel Baumann <daniel@debian.org> | 2008-11-21 12:43:40 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:45 +0100 |
commit | 50c3576e0bbb8793b2b144c5da9d7bf96089f4be (patch) | |
tree | 385a092242886246d0260e88907be381a870779b /functions/echo.sh | |
parent | 5166362009fcb3014507e8ce60d32276e38cbc18 (diff) | |
download | vyos-live-build-50c3576e0bbb8793b2b144c5da9d7bf96089f4be.tar.gz vyos-live-build-50c3576e0bbb8793b2b144c5da9d7bf96089f4be.zip |
Removing wrong 'new-line' in running echo functions when using no color output.
Diffstat (limited to 'functions/echo.sh')
-rwxr-xr-x | functions/echo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/echo.sh b/functions/echo.sh index 9d828b852..c217dbdf8 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -125,7 +125,7 @@ Echo_message_running () if [ "${_COLOR}" = "false" ] then - printf "...\n" + printf "..." else printf "... ${YELLOW}${BLINK}running${NO_COLOR}" fi @@ -164,7 +164,7 @@ Echo_verbose_running () if [ "${_COLOR}" = "false" ] then - printf "...\n" + printf "..." else printf "... ${YELLOW}${BLINK}running${NO_COLOR}" fi |