blob: c1d938e60fed5b25f6e6ea8cca8591b4434f2f3e [file] [log] [blame]
Laszlo Csomor03275d62015-03-20 13:04:02 +00001# exit immediately if a command or pipeline fails, unless it is in a test expression
2set -e
3
4# treat unset variables as errors
5set -u
6
7# exit code of a pipeline is 0, or the non-zero exit code of the rightmost failing command
8set -o pipefail