0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

fix(dotenv): actually exit when .env syntax is broken

This commit is contained in:
Marc Cornellà 2022-02-18 19:41:21 +01:00
parent ef3f7c43a9
commit 3427da4057
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -52,7 +52,10 @@ source_env() {
fi
# test .env syntax
zsh -fn $ZSH_DOTENV_FILE || echo "dotenv: error when sourcing '$ZSH_DOTENV_FILE' file" >&2
zsh -fn $ZSH_DOTENV_FILE || {
echo "dotenv: error when sourcing '$ZSH_DOTENV_FILE' file" >&2
return 1
}
setopt localoptions allexport
source $ZSH_DOTENV_FILE