-
Notifications
You must be signed in to change notification settings - Fork 1
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
Modified macOS installation to only use native tools #46
Modified macOS installation to only use native tools #46
Conversation
wknapik
commented
Jan 8, 2025
•
edited
Loading
edited
We should get someone familiar with macOS to review these changes to make sure that it's the right approach. |
a764da9
to
a0453c3
Compare
@@ -36,7 +36,7 @@ main() { | |||
|
|||
## Find and/or install the necessary tools | |||
|
|||
if [ "$(id -u)" = 0 ] || [ "$os" = Darwin ]; then | |||
if am_admin; then |
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.
I don't think we ever want to install using sudo on macos
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.
That would only happen if the user is not in the admin group, which is necessary to install in /Applications without sudo.
Or is there something else that would be better to do in this case?
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.
That doesn't seem right, but I guess I have never really used an account that isn't in the admin group. I think it's likely very uncommon
Discussed on Slack; consensus from MacOS users is we'd prefer if this were reverted to NOT supporting MacOS https://bravesoftware.slack.com/archives/C01EVLWS8R5/p1736803102037269?thread_ts=1736437286.640829&cid=C01EVLWS8R5 |
Will remove macOS support after #47 goes in |
macOS support is removed in the latest release |