Commit b33dc932 authored by Vitaly Lipatov's avatar Vitaly Lipatov

bin/epm-sh-functions echog: don't use eval_gettext for empty strings

parent 5eec5a83
......@@ -333,9 +333,10 @@ echog()
{
if [ "$1" = "-n" ] ; then
shift
eval_gettext "$*"
[ -n "$1" ] && eval_gettext "$*"
else
eval_gettext "$*"; echo
[ -n "$1" ] && eval_gettext "$*"
echo
fi
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment