aboutsummaryrefslogtreecommitdiff
path: root/zsh/zprofile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-04-01 21:05:38 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-04-01 21:05:38 +1300
commitdd1b9b2e1ba1ee926400de248a2d9edce8378eaf (patch)
treeff3b4e4e7cb11216a8d2c7d2a984186fdfda3f61 /zsh/zprofile
parentMerge branch 'release/v4.17.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-dd1b9b2e1ba1ee926400de248a2d9edce8378eaf.tar.gz
dotfiles-dd1b9b2e1ba1ee926400de248a2d9edce8378eaf.zip
Merge branch 'release/v4.18.0'v4.18.0
* release/v4.18.0: Bump VERSION Set 'keywordprg' to :help for older Vims Fix up a few cosmetic shell anti-patterns Remove unneeded leading pipe from b:undo_ftplugin
Diffstat (limited to 'zsh/zprofile')
-rw-r--r--zsh/zprofile4
1 files changed, 3 insertions, 1 deletions
diff --git a/zsh/zprofile b/zsh/zprofile
index 65586fe2..614672ba 100644
--- a/zsh/zprofile
+++ b/zsh/zprofile
@@ -1,2 +1,4 @@
# Source ~/.profile, since Zsh doesn't do this by default
-[[ -e $HOME/.profile ]] && source "$HOME"/.profile
+if [[ -e $HOME/.profile ]] ; then
+ source "$HOME"/.profile
+fi