From 91ca3fb46d43d27bc09a034fbdd7f70e654be50b Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 29 Jul 2015 17:23:54 -0700 Subject: [PATCH] Fix up $PATH paths --- dotfiles/lib/shellenv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/lib/shellenv.sh b/dotfiles/lib/shellenv.sh index 7b483b72..9ff8a5b0 100644 --- a/dotfiles/lib/shellenv.sh +++ b/dotfiles/lib/shellenv.sh @@ -5,7 +5,6 @@ add_to_back_of_path "$HOME/.rvm/bin" add_to_front_of_path "$HOME/bin" hash brew 2>/dev/null && add_to_front_of_path "$(brew --prefix coreutils)/libexec/gnubin" add_to_front_of_path "/usr/local/bin" -hash brew 2>/dev/null && add_to_front_of_path "$(brew --prefix emacs)" if is_osx; then export CFLAGS=-Qunused-arguments @@ -56,3 +55,4 @@ add_to_front_of_path "$HOME/.lib/python" 'PYTHONPATH' export RBENV_ROOT=/usr/local/var/rbenv add_to_front_of_path "$HOME/.rbenv/bin" hash rbenv 2> /dev/null && eval "$(rbenv init -)" +hash brew 2>/dev/null && add_to_front_of_path "$(brew --prefix coreutils)/libexec/gnubin"