]> code.ossystems Code Review - openembedded-core.git/commit
runqemu: do not check return code of tput
authorChen Qi <Qi.Chen@windriver.com>
Fri, 12 Apr 2019 01:40:06 +0000 (09:40 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 12 Apr 2019 12:37:11 +0000 (13:37 +0100)
commitc574aaf30c82ad397c0a6567b3cb52e7fb5d5829
tree2e0e0310aa8f0781cde99fd976e04ce060613c55
parent1bc122a044de280d17525c8e5ee66e81775a7d8b
runqemu: do not check return code of tput

The subprocess.run was replaced by subprocess.check_call because
of compatibility support down to python 3.4. But we really don't
care about whether that command succeeds. Some user reports that
in some tmux environment, this command fails and gives some
unpleasant traceback output. So we use 'call' instead of 'check_call'
to avoid such problem.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu