From 59141c8663b80c0baeed40c268af07ff54fd6d9c Mon Sep 17 00:00:00 2001 From: Josh Pollock Date: Sun, 25 Jan 2015 17:05:21 -0500 Subject: [PATCH 1/2] Add note about /usr not existing in OSX Yosemite by default. BTW Seriously Apple? --- doc/00-intro.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/00-intro.md b/doc/00-intro.md index c1bafa3cd..a927f35fb 100644 --- a/doc/00-intro.md +++ b/doc/00-intro.md @@ -107,6 +107,8 @@ mv composer.phar /usr/local/bin/composer > **Note:** If the above fails due to permissions, run the `mv` line > again with sudo. +> **Note:** In OSX Yosemite the `/usr` directory does not exist by default. If you recive the error "/usr/local/bin/composer: No such file or directory" then you must create `/usr/local/bin/composer/` manually. + Then, just run `composer` in order to run Composer instead of `php composer.phar`. ## Installation - Windows From 76a0e818b5cb9feae9e1d799e8bf1591cabf389d Mon Sep 17 00:00:00 2001 From: Josh Pollock Date: Wed, 28 Jan 2015 21:33:42 -0500 Subject: [PATCH 2/2] Improve notice about /usr/local/bin --- doc/00-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/00-intro.md b/doc/00-intro.md index a927f35fb..714b55be0 100644 --- a/doc/00-intro.md +++ b/doc/00-intro.md @@ -107,7 +107,7 @@ mv composer.phar /usr/local/bin/composer > **Note:** If the above fails due to permissions, run the `mv` line > again with sudo. -> **Note:** In OSX Yosemite the `/usr` directory does not exist by default. If you recive the error "/usr/local/bin/composer: No such file or directory" then you must create `/usr/local/bin/composer/` manually. +> **Note:** In OSX Yosemite the `/usr` directory does not exist by default. If you receive the error "/usr/local/bin/composer: No such file or directory" then you must create `/usr/local/bin/` manually before proceeding. Then, just run `composer` in order to run Composer instead of `php composer.phar`.