ci/bare-metal: no need to use tee

fastboot_run.py will watch results/serial-output.txt.

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9976>
This commit is contained in:
Christian Gmeiner 2021-04-01 16:37:25 +02:00 committed by Marge Bot
parent 06ebbde630
commit 0bd01e86f3
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ export PATH=$BM:$PATH
# Start background command for talking to serial if we have one.
if [ -n "$BM_SERIAL_SCRIPT" ]; then
$BM_SERIAL_SCRIPT | tee results/serial-output.txt &
$BM_SERIAL_SCRIPT > results/serial-output.txt &
while [ ! -e results/serial-output.txt ]; do
sleep 1