diff options
| author | Mike McQuaid | 2016-09-09 08:06:37 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2016-09-09 08:06:37 +0100 |
| commit | 492391f5feb5b7d2c33973729d8243f1909078f6 (patch) | |
| tree | 3657ad828a8f194fc0ffcad8ac4c88d9ca066d93 /share | |
| parent | 1d66cdd3ade841c6b7cd8a71d4b71d5426d00a58 (diff) | |
| download | brew-492391f5feb5b7d2c33973729d8243f1909078f6.tar.bz2 | |
Don't require/recommend ownership of /usr/local.
Apple reset this on every OS X major (and some minor) updates and it
always proves a painful and unnecessary step. Instead just check the
directories we actually care about are writable.
This may mean if these directories do not already exist (although they
are now created by the installed) that `brew link` will fail and require
manual intervention but this seems to be superior for both new and the
majority of existing users.
Diffstat (limited to 'share')
| -rw-r--r-- | share/doc/homebrew/Troubleshooting.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/homebrew/Troubleshooting.md b/share/doc/homebrew/Troubleshooting.md index b02c19676..31682a7bf 100644 --- a/share/doc/homebrew/Troubleshooting.md +++ b/share/doc/homebrew/Troubleshooting.md @@ -13,7 +13,7 @@ brew gist-logs <formula> * Read through the [Common Issues](Common-Issues.md). * If you’re installing something Java-related, maybe you need to install Java (`brew cask install java`)? * Check that **Command Line Tools for Xcode (CLT)** and/or **Xcode** are up to date. -* If things fail with permissions errors, check the permissions in `/usr/local`. If you’re unsure what to do, you can `sudo chown -R $(whoami) /usr/local`. +* If things fail with permissions errors, check the permissions of `/usr/local`'s subdirectories. If you’re unsure what to do, you can `cd /usr/local && sudo chown -R $(whoami) bin etc include lib sbin share var Frameworks`. ## Check to see if the issue has been reported * Check the [issue tracker](https://github.com/Homebrew/homebrew-core/issues) to see if someone else has already reported the same issue. |
