Skip to content
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

Teach client to find Homebrew installations on Apple Silicon #5164

Merged
merged 1 commit into from
Mar 26, 2025

Conversation

andyleejordan
Copy link
Member

Since /opt/homebrew is now used instead of /usr/local.

This annoyed me when setting up a new MacBook.

@andyleejordan andyleejordan added Issue-Enhancement A feature request (enhancement). Area-Startup labels Mar 26, 2025
@Copilot Copilot bot review requested due to automatic review settings March 26, 2025 20:25
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds support for detecting Homebrew-installed PowerShell on Apple Silicon by updating both the platform detection logic and related tests. Key changes include:

  • Defining new constants and functions to locate Homebrew installations in src/platform.ts.
  • Updating the enumeration order to search for Homebrew stable, LTS, and preview installations on macOS.
  • Enhancing tests in test/core/platform.test.ts to validate the correct discovery of Homebrew installations.

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
test/core/platform.test.ts Adds test cases for Homebrew installation paths (stable, LTS, preview).
src/platform.ts Introduces constants and functions to locate Homebrew installations on macOS.
Comments suppressed due to low confidence (3)

test/core/platform.test.ts:598

  • The Homebrew stable installation path is set to "/usr/local/bin/pwsh", but on Apple Silicon it should be "/opt/homebrew/bin/pwsh". Please update this path to reflect the correct location.
{ exePath: "/usr/local/bin/pwsh", displayName: "PowerShell (Homebrew)", supportsProperArguments: true }

test/core/platform.test.ts:604

  • The Homebrew LTS installation path is set to "/usr/local/bin/pwsh-lts", but it should be "/opt/homebrew/bin/pwsh-lts" for Apple Silicon. Consider updating to the correct path.
{ exePath: "/usr/local/bin/pwsh-lts", displayName: "PowerShell LTS (Homebrew)", supportsProperArguments: true }

test/core/platform.test.ts:614

  • The Homebrew preview installation path is set to "/usr/local/bin/pwsh-preview", but it should be "/opt/homebrew/bin/pwsh-preview" for Apple Silicon. Please update this accordingly.
{ exePath: "/usr/local/bin/pwsh-preview", displayName: "PowerShell Preview (Homebrew)", supportsProperArguments: true }

@andyleejordan
Copy link
Member Author

andyleejordan commented Mar 26, 2025

Yet again bit by our platform tests sharing macOS and Linux. I'm blaming Copilot for that one. The paths in the tests were right I swear, and then they were changed...

Since `/opt/homebrew` is now used instead of `/usr/local`.
@andyleejordan andyleejordan enabled auto-merge (squash) March 26, 2025 22:11
@SydneyhSmith SydneyhSmith self-requested a review March 26, 2025 23:03
@andyleejordan andyleejordan merged commit f172092 into main Mar 26, 2025
7 checks passed
@andyleejordan andyleejordan deleted the homebrew branch March 26, 2025 23:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Startup Issue-Enhancement A feature request (enhancement).
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants