diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-12-03 18:50:25 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-12-03 22:23:09 +0100 |
commit | d71d2ddace492f1b20716373879e5f931c87b78c (patch) | |
tree | bfd64b047f4c139c53849ff1c873d05253c9f2fd /test/integration/local | |
parent | docker: factor out cron stuff into schedule.sh (diff) | |
download | cgitize-d71d2ddace492f1b20716373879e5f931c87b78c.tar.gz cgitize-d71d2ddace492f1b20716373879e5f931c87b78c.zip |
fix preludes in bash scripts
Diffstat (limited to '')
-rwxr-xr-x | test/integration/local/test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/local/test.sh b/test/integration/local/test.sh index 68c78ec..05de5ac 100755 --- a/test/integration/local/test.sh +++ b/test/integration/local/test.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash set -o errexit -o nounset -o pipefail +shopt -s inherit_errexit lastpipe script_dir="$( dirname -- "${BASH_SOURCE[0]}" )" script_dir="$( cd -- "$script_dir" && pwd )" |