Skip to content

Commit

Permalink
fix local sourcing
Browse files Browse the repository at this point in the history
  • Loading branch information
jwcxz committed Aug 15, 2015
1 parent 773fd26 commit e060f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source ${CFG_ZSHCFG_DIR}/zshrc.keymap.zsh
source ${CFG_ZSHCFG_DIR}/zshrc.environment.zsh

if [ -d "$CFG_ZSHCFG_DIR/local" ]; then
for lf in "$CFG_ZSHCFG_DIR/local"; do
for lf in `find "$CFG_ZSHCFG_DIR/local"`; do
if [ -x "$lf" ]; then
source $lf
fi
Expand Down

0 comments on commit e060f5e

Please sign in to comment.