fix(scripts): use env to find bash interpreter (#3861)

This commit is contained in:
Kamil Monicz 2025-08-10 02:48:47 +02:00 committed by GitHub
parent 213423f9d9
commit 2b549baee7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# TODO: Remove this after the next hard-stop

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eu
OLD_VERSION="$1"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eu
# Bring master back to nightlies after merge from release branch

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Set the script directory as working directory.
cd $(dirname $0)