2012-05-22 12:49:45 -04:00
|
|
|
#
|
|
|
|
# Defines environment variables.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2013-11-23 04:23:56 -08:00
|
|
|
# Ensure that a non-login, non-interactive shell has a defined environment.
|
2017-07-28 10:24:45 -07:00
|
|
|
if [[ ( "$SHLVL" -eq 1 && ! -o LOGIN ) && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
|
2013-11-23 04:23:56 -08:00
|
|
|
source "${ZDOTDIR:-$HOME}/.zprofile"
|
2012-08-31 19:44:29 -04:00
|
|
|
fi
|