Forked from stefanschmidt/fix-homebrew-owner-perms.sh
Created
September 30, 2018 22:39
-
-
Save dyspop/50a252bf3eaf24d10f3561d7f6e02a04 to your computer and use it in GitHub Desktop.
Fix ownership and permissions of a multi-user Homebrew installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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