Detect errors on the left-hand side of a pipeline

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2020-03-28 18:50:49 +01:00 committed by Thomas Daubney
parent 7105a33906
commit 8ab2994eb5

View file

@ -113,8 +113,9 @@
#### Initialization and command line parsing
################################################################
# Abort on errors (and uninitialised variables)
set -eu
# Abort on errors (even on the left-hand side of a pipe).
# Treat uninitialised variables as errors.
set -e -o pipefail -u
pre_check_environment () {
if [ -d library -a -d include -a -d tests ]; then :; else