From 2150e433ecd482c0928cf94ae1829e01fcee8bf7 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 23 Nov 2016 11:45:29 -0500 Subject: [PATCH] actually -s doesn't work, back to | sort --- 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 372a07a..5257cf2 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 -s | grep '\.env\..*\.zsh') +for f in $(find $ZSH_DIR/ -print -type f -maxdepth 1 | grep '\.env\..*\.zsh' | sort) do source "$f" done