diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-04-11 00:14:04 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-04-11 00:14:04 +0800 |
commit | 87deb5ef077ed75cf11cae08af86bcebf1a392f9 (patch) | |
tree | 6b02d9906b1bdf4b2fec7d4204ac498fcbd1cb26 | |
parent | 329f986c366c009d3e3bd94158772037a4568daf (diff) | |
download | dotfiles-87deb5ef077ed75cf11cae08af86bcebf1a392f9.tar.bz2 |
_zshrc: fix wrong use of "exit 0"
-rw-r--r-- | _zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ source ~/.zsh/emacs.zsh source ~/.zsh/aliases.zsh ## Local configurations -[ -r ~/.zshrc.local ] && source ~/.zshrc.local || exit 0 +[ -r ~/.zshrc.local ] && source ~/.zshrc.local || : # vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=zsh: # |