0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-21 11:06:09 +02:00

run bash via env command

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

Signed-off-by: Felix Buehler <account@buehler.rocks>
This commit is contained in:
Felix Buehler 2021-11-16 17:46:50 +01:00
parent 44a55665a3
commit 8d82028fc0
3 changed files with 3 additions and 3 deletions

View file

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

View file

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

View file

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