Skip to content

Commit

Permalink
Fix file loading from vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Scott committed Dec 27, 2014
1 parent b9a0e26 commit ae7b3a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion share/homer.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ export PROMPT="♬ "

# Add user path on top so ~/bin files override the main $PATHs.
export PATH=$HOME/bin:$PATH
export HOMER_PATH=$HOMER_PREFIX/share/homer

# Load the framework
for filepath in `ls $HOMER_PATH/share/homer/*.zsh`; do
for filepath in `ls $HOMER_PATH/*.zsh`; do
source "$filepath"
done

Expand Down

0 comments on commit ae7b3a0

Please sign in to comment.