On Thu, Feb 25, 2021 at 04:21:42PM +0800, Cao Xueliang wrote:
On Thu, Feb 25, 2021 at 02:55:10PM +0800, Wang Yong wrote:
reduce output when $ucode not exist
Signed-off-by: Wang Yong wangyong0117@qq.com
bin/run-lkp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/run-lkp b/bin/run-lkp index b422a7eb4..ff15b7c62 100755 --- a/bin/run-lkp +++ b/bin/run-lkp @@ -29,7 +29,7 @@ setup_result_root || { job_done; exit 1; } echo run-job $job set_job_state 'running'
-echo "target ucode: $ucode" +[ -n "${ucode}" ] && echo "target ucode: $ucode"
=> ${ucode} Thanks, Xueliang
Try not to change the source code
Thanks, Yong