From 11aa7c3701f66a130054640b8cf0adc1abd39522 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sun, 11 Dec 2016 09:55:53 -0500 Subject: [PATCH] Fix find argument ordering --- zshrc.d/.env.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc.d/.env.zsh b/zshrc.d/.env.zsh index 5257cf2..7515e42 100644 --- a/zshrc.d/.env.zsh +++ b/zshrc.d/.env.zsh @@ -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 | grep '\.env\..*\.zsh' | sort) +for f in $(find $ZSH_DIR/ -maxdepth 1 -print -type f | grep '\.env\..*\.zsh' | sort) do source "$f" done