add pipefails propperly
All checks were successful
Build and Test / splatoon (push) Successful in 4m0s
Build and Test / friends (push) Successful in 4m13s

This commit is contained in:
Maple 2026-04-26 14:39:05 +02:00
commit be6aabb4eb
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -e pipefail
SETTINGS=$(yq ea "." editions.yaml | yq 'keys[]') SETTINGS=$(yq ea "." editions.yaml | yq 'keys[]')
IFS=$'\n' IFS=$'\n'
while IFS=$'\n' read -r EDITION; do while IFS=$'\n' read -r EDITION; do

View file

@ -1,4 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -e pipefail
if [ -z ${EDITION+x} ]; then if [ -z ${EDITION+x} ]; then
EDITION=$1 EDITION=$1
fi fi