Merge pull request #25 from blueyed/set-errexit-during-setup

tests: setopt errexit during setup
This commit is contained in:
Arash Rouhani 2015-03-29 12:46:43 +02:00
commit 611c1a1588
1 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,10 @@ if [[ $AUTOENV_ENV_FILENAME[0,4] != '/tmp' ]]; then
return 1
fi
# Abort this setup script on any error.
_save_errexit=${options[errexit]}
set -e
# Reset any authentication.
echo -n >| $AUTOENV_ENV_FILENAME
@ -27,3 +31,7 @@ test_autoenv_auth_env_files() {
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_ENTER
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_LEAVE
}
# Now keep on going on errors again.
options[errexit]=$_save_errexit
unset _save_errexit