summaryrefslogtreecommitdiff
path: root/functions/echo.sh
diff options
context:
space:
mode:
authorAntonio Terceiro <terceiro@softwarelivre.org>2009-01-14 22:45:51 -0300
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:09:39 +0100
commit6891cbe09843e84edfff45a600015c488a226967 (patch)
treee3cd1c92a88c07a6757541af6d99b08d720ae9c5 /functions/echo.sh
parent2a3056e8a9dc26ef9f767319a60a9c38ace0377b (diff)
downloadlive-build-6891cbe09843e84edfff45a600015c488a226967.zip
live-build-6891cbe09843e84edfff45a600015c488a226967.tar.gz
Adding missing newlines in Echo_error
Diffstat (limited to 'functions/echo.sh')
-rwxr-xr-xfunctions/echo.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/echo.sh b/functions/echo.sh
index c217dbd..2765879 100755
--- a/functions/echo.sh
+++ b/functions/echo.sh
@@ -73,9 +73,9 @@ Echo_error ()
if [ "${_L10N}" = "false" ]
then
- printf " ${STRING}" "${@}" >&2
+ printf " ${STRING}\n" "${@}" >&2
else
- (printf " $(eval_gettext "${STRING}")" "${@}";) >&2
+ (printf " $(eval_gettext "${STRING}")" "${@}"; echo;) >&2
fi
}