From a912e7d1e911eb999d4ffa0fcb421f7e12600f44 Mon Sep 17 00:00:00 2001 From: Nikhil Devshatwar Date: Wed, 4 Sep 2019 19:47:56 +0530 Subject: [PATCH] demo: Fix the timeout command usage timeout command does not support -t option. Update demo script to use the correct syntax. Signed-off-by: Nikhil Devshatwar --- demo/cockpit-demo-infotainment-VM.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/cockpit-demo-infotainment-VM.sh b/demo/cockpit-demo-infotainment-VM.sh index a3250c0..98571b8 100755 --- a/demo/cockpit-demo-infotainment-VM.sh +++ b/demo/cockpit-demo-infotainment-VM.sh @@ -9,7 +9,7 @@ run_gfx_apps() { for i in $DEMOLIST; do echo ">>>>>>>>>>>>>>>>>>>>>> Running $i..."; - timeout -t 12 -s 9 /usr/bin/SGX/demos/Wayland/$i -width=800 -height=600 + timeout 12 -s 9 /usr/bin/SGX/demos/Wayland/$i -width=800 -height=600 done done } -- 2.39.2