-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for macOS 10.13 High Sierra #49
Conversation
This script on High Sierra works for me. As for dropping legacy support, I’m inclined to do that whenever it becomes a support burden.
It doesn’t seem needed anymore
I remember the Are we sure that's resolved now? |
@willmanduffy Thanks! Nope; it's not resolved. Gonna take another pass. Note that The next best fix that comes to mind is to install node with a different |
Per Homebrew/brew#3228 there is a different command to change ownership now. Because SIP blocks changing
Pushing a commit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM !
Hi! Just booted up a brand new Macbook Pro and brew is one of the first thing I've attempted to install after first updating it to High Sierra etc.
And running |
print_status "Fixing /usr/local permissions issue" | ||
sudo chown -R "$(whoami)" /usr/local | ||
sudo chown -R "$(whoami)" sudo chown -R "$(whoami)" "$(brew --prefix)"/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't look right...?
I also created this directory, was need for Python 3 homebrew install: |
@matinfo adding it to my post for completeness |
solved by changing subdir permissions as mentioned by @ktheory |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" that works. |
I've done
but
still fails:
Is there some way to allow |
@DavidBiesack: What is your current directory permission of |
I believe this is related to Homebrew/brew#3228 |
If you want chown /usr/local Just disable |
This script on High Sierra works for me.
As for dropping legacy support, I’m inclined to do that whenever it
becomes a support burden.
/usr/local
ownership check on new systems. I don't think we need this anymore since everything else under/usr/local
is owned by the user.👋 @talaris