diff options
author | Antonio Terceiro <terceiro@softwarelivre.org> | 2009-01-14 22:45:51 -0300 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:39 +0100 |
commit | 6891cbe09843e84edfff45a600015c488a226967 (patch) | |
tree | e3cd1c92a88c07a6757541af6d99b08d720ae9c5 /functions/echo.sh | |
parent | 2a3056e8a9dc26ef9f767319a60a9c38ace0377b (diff) | |
download | vyos-live-build-6891cbe09843e84edfff45a600015c488a226967.tar.gz vyos-live-build-6891cbe09843e84edfff45a600015c488a226967.zip |
Adding missing newlines in Echo_error
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 c217dbdf8..2765879f9 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 } |