run bash via env command (#1637)

`#!/usr/bin/env` searches `PATH` for `bash`, and `bash` is not always in `/bin``

Signed-off-by: Felix Buehler <account@buehler.rocks>
pull/1677/head
Felix Bühler 4 years ago committed by GitHub
parent c046638a98
commit 961aeb147e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -Eeuo pipefail
stable_channel='22.2.3'

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eo pipefail
declare -A php_version=(

Loading…
Cancel
Save