Browse Source

[Fix #523] Ensure zprofile exists before sourcing it

master
Sorin Ionescu 11 years ago
parent
commit
e4e4f89c9f
  1. 2
      runcoms/zshenv

2
runcoms/zshenv

@ -6,7 +6,7 @@ @@ -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

Loading…
Cancel
Save