This file contains hidden or 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
#!/bin/sh | |
# Configure homebrew permissions to allow multiple users on MAC OSX. | |
# Any user from the admin group will be able to manage the homebrew and cask installation on the machine. | |
# allow admins to manage homebrew's local install directory | |
sudo chgrp -R admin $(brew --prefix)/* | |
sudo chmod -R g+w $(brew --prefix)/* | |
# everything brew is self-contained in `$(brew --prefix)/*` - so you're all set! |