From: MyungJoo Ham Date: Tue, 22 Dec 2020 07:26:53 +0000 (+0900) Subject: Update progress mode: use >&2 instead of /dev/stderr X-Git-Tag: accepted/tizen/unified/20201222.122519^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28ac84b18a9b49f6cfc2d20aae950accb55fc3d8;p=platform%2Fupstream%2FSSAT.git Update progress mode: use >&2 instead of /dev/stderr It appears that some Linux distros (gbs-Tizen) does not give permissions of /dev/stderr for build daemons. Signed-off-by: MyungJoo Ham --- diff --git a/ssat-api.sh b/ssat-api.sh index 5fb1ff5..f556198 100644 --- a/ssat-api.sh +++ b/ssat-api.sh @@ -142,7 +142,7 @@ function testInit() { function testResult() { if [[ ${PROGRESSLOGLEVEL} -gt 1 ]] then - echo "Case ${2}(${3}) report ${1}" > /dev/stderr + echo "Case ${2}(${3}) report ${1}" >&2 fi _cases=$((_cases+1))