Update shebang from /bin/bash to /usr/bin/env bash

This commit is contained in:
Tianon Gravi 2025-03-24 16:35:14 -07:00
parent 337f857b04
commit 5b5487f087
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -eu set -eu
image="${1:-hello-world}" image="${1:-hello-world}"

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")" cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"