Skip to content

Instantly share code, notes, and snippets.

@stefanschmidt
Created April 12, 2016 21:19
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save stefanschmidt/047001373d1defc90b6bdd7820e92cf7 to your computer and use it in GitHub Desktop.
Save stefanschmidt/047001373d1defc90b6bdd7820e92cf7 to your computer and use it in GitHub Desktop.
Fix ownership and permissions of a multi-user Homebrew installation
# fix owner of files and folders recursively
sudo chown -vR $(whoami) /usr/local /opt/homebrew-cask /Library/Caches/Homebrew
# fix read/write permission of files and folders recursively
chmod -vR ug+rw /usr/local /opt/homebrew-cask /Library/Caches/Homebrew
# fix execute permission of folders recursively
find /usr/local /opt/homebrew-cask /Library/Caches/Homebrew -type d -exec chmod -v ug+x {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment