From aed5f6fd14e456edaed97b2180e3956105f80f1c Mon Sep 17 00:00:00 2001 From: Damian Kunze Date: Sat, 9 May 2026 13:33:45 +0200 Subject: [PATCH] Use $HOME variable in setting $PATH also on MacOS --- .../collections/troubleshooting/command-not-found-statamic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/collections/troubleshooting/command-not-found-statamic.md b/content/collections/troubleshooting/command-not-found-statamic.md index 76ba29928..052960cbf 100644 --- a/content/collections/troubleshooting/command-not-found-statamic.md +++ b/content/collections/troubleshooting/command-not-found-statamic.md @@ -42,7 +42,7 @@ You can solve this by adding Composer's `bin` directory to your `PATH` (sometime ``` shell # Replace the path below with the path identified in step 1 - export PATH="/Users/me/.composer/vendor/bin/":$PATH # MacOS + export PATH="$HOME/.composer/vendor/bin/":$PATH # MacOS export PATH="$HOME/.config/composer/vendor/bin/":$PATH # Linux ```