2016-12-14 16:49:08 +00:00
|
|
|
source_env() {
|
2019-05-19 20:45:27 +00:00
|
|
|
if [[ -f $ZSH_DOTENV_FILE ]]; then
|
2020-02-12 16:51:40 +00:00
|
|
|
# confirm before sourcing .env file
|
|
|
|
local confirmation
|
|
|
|
echo -n "dotenv: source '$ZSH_DOTENV_FILE' file in the directory? (Y/n) "
|
|
|
|
if read -k 1 confirmation && [[ $confirmation = [nN] ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2018-08-07 22:05:34 +00:00
|
|
|
# test .env syntax
|
2019-05-19 20:45:27 +00:00
|
|
|
zsh -fn $ZSH_DOTENV_FILE || echo "dotenv: error when sourcing '$ZSH_DOTENV_FILE' file" >&2
|
2018-08-07 22:05:34 +00:00
|
|
|
|
2018-07-10 21:31:47 +00:00
|
|
|
if [[ -o a ]]; then
|
2019-05-19 20:45:27 +00:00
|
|
|
source $ZSH_DOTENV_FILE
|
2018-07-10 21:31:47 +00:00
|
|
|
else
|
|
|
|
set -a
|
2019-05-19 20:45:27 +00:00
|
|
|
source $ZSH_DOTENV_FILE
|
2018-07-10 21:31:47 +00:00
|
|
|
set +a
|
|
|
|
fi
|
2016-12-14 16:49:08 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
autoload -U add-zsh-hook
|
|
|
|
add-zsh-hook chpwd source_env
|
2018-08-07 21:54:07 +00:00
|
|
|
|
2019-05-19 20:45:27 +00:00
|
|
|
if [[ -z $ZSH_DOTENV_FILE ]]; then
|
|
|
|
ZSH_DOTENV_FILE=.env
|
|
|
|
fi
|
|
|
|
|
2018-08-07 21:54:07 +00:00
|
|
|
source_env
|