From b4b9887670cf59fd4155c6113f05194fd3e2f689 Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Tue, 2 Aug 2016 13:27:41 +0200 Subject: [PATCH] Update composer binaries location. --- zsh/.zshrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index e9c902b..9fc3698 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -57,10 +57,14 @@ alias help=run-help tabs -4 # Add Composer binaries -if [ -d "$HOME/.composer" ]; then +if [ -d "$HOME/.composer/vendor/bin" ]; then path+=("$HOME/.composer/vendor/bin") fi +if [ -d "$HOME/.config/composer/vendor/bin" ]; then + path+=("$HOME/.config/composer/vendor/bin") +fi + # No matches found for "*" unsetopt nomatch