From 86bdabb4c2ee73c5e8495a9cea633eee60bd39a7 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 27 Sep 2023 15:12:59 +0100 Subject: [PATCH] ci: fix shebang in build-deqp-runner.sh We use bash features such as `pushd`, so be accurate in the shebang, even though in practice this is sourced not executed so this shebang only serves our editors. Part-of: --- .gitlab-ci/container/build-deqp-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/container/build-deqp-runner.sh b/.gitlab-ci/container/build-deqp-runner.sh index d526c75..9c3bb12 100644 --- a/.gitlab-ci/container/build-deqp-runner.sh +++ b/.gitlab-ci/container/build-deqp-runner.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # shellcheck disable=SC2086 # we want word splitting set -ex -- 2.7.4