diff options
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/echo.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/functions/echo.sh b/functions/echo.sh index a94451f1e..f1aac153d 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -139,12 +139,12 @@ Echo_warning () if [ "${_COLOR}" = "false" ] then - printf "W:" >&1 + printf "W:" >&2 else - printf "${YELLOW}W${NO_COLOR}:" >&1 + printf "${YELLOW}W${NO_COLOR}:" >&2 fi - printf " ${STRING}\n" "${@}" >&1 + printf " ${STRING}\n" "${@}" >&2 } Echo_status () |