Browse Source

Fix find argument ordering

master
Brett Langdon 9 years ago
parent
commit
11aa7c3701
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" export MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH"
# Load in any additional .env files provided # Load in any additional .env files provided
for f in $(find $ZSH_DIR/ -print -type f -maxdepth 1 | grep '\.env\..*\.zsh' | sort)
for f in $(find $ZSH_DIR/ -maxdepth 1 -print -type f | grep '\.env\..*\.zsh' | sort)
do do
source "$f" source "$f"
done done

Loading…
Cancel
Save