## Problem Currently, bash scripts do not use `set -o pipefail`, it can cause silent failures ## Solution Add `set -o pipefail` to all bash scripts. ## Scope - [ ] Find all scripts: `find . -name "*.sh"` - [ ] Update each file - [ ] Test with `shellcheck`
Problem
Currently, bash scripts do not use
set -o pipefail, it can cause silent failuresSolution
Add
set -o pipefailto all bash scripts.Scope
find . -name "*.sh"shellcheck