[Fix #523] Ensure zprofile exists before sourcing it

This commit is contained in:
Sorin Ionescu 2014-01-03 13:37:36 -05:00
parent 817dd3aa3a
commit e4e4f89c9f
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
#
# Ensure that a non-login, non-interactive shell has a defined environment.
if [[ "$SHLVL" -eq 1 && ! -o LOGIN ]]; then
if [[ "$SHLVL" -eq 1 && ! -o LOGIN && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
source "${ZDOTDIR:-$HOME}/.zprofile"
fi