diff --git a/bin/generate_dockerfile.sh b/bin/generate_dockerfile.sh index bdabcd7..2404c8b 100755 --- a/bin/generate_dockerfile.sh +++ b/bin/generate_dockerfile.sh @@ -1,4 +1,6 @@ -#!/bin/bash +#!/usr/bin/env bash + +set -euo pipefail # Template Dockerfile path template_dockerfile="bin/Dockerfile-template" diff --git a/bin/update_deps.sh b/bin/update_deps.sh index 41c1d23..49ebb3b 100755 --- a/bin/update_deps.sh +++ b/bin/update_deps.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Turn on bash strict mode. -set -euxo pipefail +set -euo pipefail # Delete the old lock file. rm -f uv.lock