feat(install): prefer Homebrew on macOS, fix README brew command#63
Conversation
install.sh now tries `brew install --cask runware/tap/runware` first on macOS, falling back to the binary download only when Homebrew is not found. Update README to use the correct one-liner (adds --cask, removes the separate brew tap step). Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on this repository. To trigger a review, include ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Free Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Note 🎁 Summarized by CodeRabbit FreeYour organization has reached its limit of developer seats under the Pro Plan. For new users, CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please add seats to your subscription by visiting https://app.coderabbit.ai/login.If you believe this is a mistake and have available seats, please assign one to the pull request author through the subscription management page using the link above. Comment |
There was a problem hiding this comment.
Pull request overview
This PR updates the installation experience by preferring the Homebrew cask on macOS (when Homebrew is available), while keeping the existing direct-binary download path as a fallback.
Changes:
- Update
public/install.shto detect macOS + Homebrew and install viabrew install --cask runware/tap/runware. - Update README Homebrew instructions to use the correct cask install command and remove the separate tap step.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| README.md | Updates the Homebrew install command to use the cask reference in the tap. |
| public/install.sh | Adds macOS/Homebrew detection and routes installation through Homebrew when available. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
install.sh now tries
brew install --cask runware/tap/runwarefirst on macOS, falling back to the binary download only when Homebrew is not found. Update README to use the correct one-liner (adds --cask, removes the separate brew tap step).