Skip to content

Instantly share code, notes, and snippets.

View MonikaMahanthappa's full-sized avatar

Monika M MonikaMahanthappa

  • MavenHive
  • Bangalore, India
View GitHub Profile
@MonikaMahanthappa
MonikaMahanthappa / brew-perms.sh
Created June 2, 2016 10:19 — forked from jaibeee/brew-perms.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.
#!/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
# allow admins to homebrew's local cache of formulae and source files
chgrp -R admin /Library/Caches/Homebrew