set -e
stops the execution of a script if a command or pipeline has an error - which is the opposite of the default shell behaviour, which is to ignore errors in scripts. Type help set
in a terminal to see the documentation for this built-in command.
↧
Answer by Robin Green for What does 'set -e' mean in a Bash script?
↧