Skip to content

Instantly share code, notes, and snippets.

@zet235
Forked from jaibeee/brew-perms.sh
Created January 26, 2018 09:42
Show Gist options
  • Save zet235/e3226334dfd517fab154e14d5ddd73e7 to your computer and use it in GitHub Desktop.
Save zet235/e3226334dfd517fab154e14d5ddd73e7 to your computer and use it in GitHub Desktop.
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.
#!/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
chgrp -R admin /usr/local
chmod -R g+w /usr/local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment