From 5f7901dcb8519fe1d553bffda803a8d8da8e5af5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Tue, 30 Oct 2018 21:39:40 +0100 Subject: [PATCH] afm-util: Fix report of error MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The script afm-util wasn't reporting correctly errors. The use of the output status of afb-client-demo was possible but this solution is simplest to output the error message. Bug-AGL: SPEC-1863 Change-Id: I5ac919e615ed5c0f21589292e94a9c3d6209a83f Signed-off-by: José Bollo --- scripts/afm-util.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/afm-util.in b/scripts/afm-util.in index 40bc7da..3f47d97 100755 --- a/scripts/afm-util.in +++ b/scripts/afm-util.in @@ -2,7 +2,7 @@ send() { afb-client-demo -H -d unix:@afm_platform_rundir@/apis/ws/afm-main "$1" "$2" | - awk '$1=="ON-REPLY-FAIL"{$1="ERROR:";$2="";print;exit 1;}NR>1' + awk '$1=="ON-REPLY" && $3!="success"{$1="ERROR:";$2="";print > "/dev/stderr";exit 1;}NR>1' } case "$1" in -- 2.16.6