mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(dotenv): actually exit when .env syntax is broken
This commit is contained in:
parent
ef3f7c43a9
commit
3427da4057
1 changed files with 4 additions and 1 deletions
|
@ -52,7 +52,10 @@ source_env() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# test .env syntax
|
# 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
|
setopt localoptions allexport
|
||||||
source $ZSH_DOTENV_FILE
|
source $ZSH_DOTENV_FILE
|
||||||
|
|
Loading…
Reference in a new issue