Module: Mesa Branch: main Commit: e3f71aaa3764a48f25fd6fc37ad018955b9019c2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e3f71aaa3764a48f25fd6fc37ad018955b9019c2
Author: Guilherme Gallo <[email protected]> Date: Mon Apr 11 15:26:13 2022 -0300 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 <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15938> --- .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"
