From bdc6a5856b52ded72f98d5f529dd79b6c75804fc Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Thu, 25 Sep 2014 09:56:55 +0200 Subject: [PATCH] Add global composer vendors to bin path. Signed-off-by: Jacob Kiers --- tilde/bash_profile.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/tilde/bash_profile.bash b/tilde/bash_profile.bash index 61a1b80..9305cb3 100644 --- a/tilde/bash_profile.bash +++ b/tilde/bash_profile.bash @@ -48,6 +48,7 @@ PATH="/usr/bin:/bin:/usr/sbin:/sbin" command -v brew >/dev/null 2>&1 && _prepend_path "$(brew --prefix coreutils)/libexec/gnubin" [ -d "$COMPOSER_HOME/vendor/bin" ] && _prepend_path "$COMPOSER_HOME/vendor/bin" [ -d $HOME/dotfiles/bin ] && _prepend_path "$HOME/dotfiles/bin" +[ -d $HOME/.composer/vendor/bin ] && _prepend_path "$HOME/.composer/vendor/bin" [ -d $HOME/bin ] && _prepend_path "$HOME/bin" export PATH