diff --git a/build.sh b/build.sh index d32b88e..65961a8 100644 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Tell build process to exit if there are any errors. set -ouex pipefail diff --git a/etc/justfile b/etc/justfile index af46e5f..5f760f0 100644 --- a/etc/justfile +++ b/etc/justfile @@ -24,7 +24,7 @@ distrobox-ubuntu: distrobox create --image quay.io/toolbx-images/ubuntu-toolbox:22.04 -n ubuntu -Y setup-flatpaks: - #!/bin/bash + #!/usr/bin/env bash echo 'Installing flatpaks from the ublue recipe ...' flatpaks=$(yq '.flatpaks[]' < /usr/etc/ublue-recipe.yml) for pkg in $flatpaks; do \ @@ -62,7 +62,7 @@ nix-me-up: /usr/bin/ublue-nix-install update: - #!/bin/bash + #!/usr/bin/env bash echo "Staging system update..." rpm-ostree update diff --git a/scripts/example.sh b/scripts/example.sh index 1487103..d8a0157 100644 --- a/scripts/example.sh +++ b/scripts/example.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Tell this script to exit if there are any errors. # You should have this in every custom script, to ensure that your completed