From e3f71aaa3764a48f25fd6fc37ad018955b9019c2 Mon Sep 17 00:00:00 2001 From: Guilherme Gallo Date: Mon, 11 Apr 2022 15:26:13 -0300 Subject: [PATCH] ci/lava: Fix shebang in deqp-runner.sh Now, every rootfs based device has bash installed, so we can use bash shebang instead of dash to enforce the use of bash's echo, not dash's one. Signed-off-by: Guilherme Gallo Part-of: --- .gitlab-ci/deqp-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index a04cbc92972..b272a94a061 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash echo -e "\e[0Ksection_start:$(date +%s):test_setup[collapsed=true]\r\e[0Kpreparing test setup"