ci: Use env to be coherent on bash shebang

As per previous commit we're figuring out the bash location on shebang
using env, let's do it everywhere for coherency, even if in CI fedora
may not yet have issues about this.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4288>
This commit is contained in:
Marco Trevisan (Treviño) 2025-02-18 16:33:12 +01:00 committed by Marge Bot
parent 169ea4cf81
commit a67a118a7e
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# We need a coverity token to fetch the tarball
if [ -x $COVERITY_TOKEN ]

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
OUTFILE=$1
NAME=$2
MESSAGE=$3