Browse Source

actually -s doesn't work, back to | sort

master
Brett Langdon 9 years ago
parent
commit
2150e433ec
No known key found for this signature in database GPG Key ID: A2ECAB73CE12147F
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      zshrc.d/.env.zsh

+ 1
- 1
zshrc.d/.env.zsh View File

@ -39,7 +39,7 @@ export PATH="$HOME/.rvm/bin:$PATH"
export MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH"
# Load in any additional .env files provided
for f in $(find $ZSH_DIR/ -print -type f -maxdepth 1 -s | grep '\.env\..*\.zsh')
for f in $(find $ZSH_DIR/ -print -type f -maxdepth 1 | grep '\.env\..*\.zsh' | sort)
do
source "$f"
done

Loading…
Cancel
Save