From 896dfd8b13bdf2c952589e8abc3f7117b4c80e5c Mon Sep 17 00:00:00 2001 From: Saibotk Date: Tue, 3 Dec 2024 01:54:38 +0100 Subject: [PATCH] fix(macos): use correct composer bin path in zsh config --- macos/path.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/path.zsh b/macos/path.zsh index 450197e..0f4e80d 100644 --- a/macos/path.zsh +++ b/macos/path.zsh @@ -1,5 +1,5 @@ # Load Composer tools -export PATH="$HOME/.config/composer/vendor/bin:$PATH" +export PATH="$HOME/composer/vendor/bin:$PATH" # Load Node global installed binaries export PATH="$HOME/.node/bin:$PATH"