-
-
Save virgi1974/c6418d14218e8ce4f9792c5dc8e1f8f5 to your computer and use it in GitHub Desktop.
Revisions
-
jaibeee revised this gist
Aug 29, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ #!/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 -
jaibeee created this gist
Aug 29, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ #!/bin/sh # Configure homebrew permissions to allow multiple users. # 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 chmod -R g+w /Library/Caches/Homebrew # if you are using cask then allow admins to manager cask install too chgrp -R admin /opt/homebrew-cask chmod -R g+w /opt/homebrew-cask