-
Notifications
You must be signed in to change notification settings - Fork 86
[SREP-4818] docs: add intructions to install with Homebrew #939
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,14 @@ backplane-cli is a CLI tool to interact with [backplane api](https://github.com/ | |
|
|
||
| Go should be installed in your local system with version 1.19 | ||
|
|
||
| ### Option 1: Download from release | ||
| ### MacOS | ||
|
|
||
| ```brew | ||
| brew install backplane-cli | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to add some Tap first that has this in it right? Or are we publicly listing this in the upstream homebrew tap? |
||
| ``` | ||
|
|
||
|
|
||
| ### Download from release | ||
|
|
||
|
Comment on lines
+14
to
22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Scope the Go prerequisite to source builds only. With Homebrew install added, the global Go 1.19 prerequisite is misleading. Go is only required for “Build from source.” Suggested fix-Go should be installed in your local system with version 1.19
+For building from source, Go should be installed locally (minimum version 1.19).🤖 Prompt for AI Agents |
||
| Download the latest binary from the GitHub [releases](https://github.com/openshift/backplane-cli/releases) page. | ||
|
|
||
|
|
@@ -24,7 +31,7 @@ $ chmod +x ocm-backplane | |
| $ mv ocm-backplane $GOBIN | ||
| ``` | ||
|
|
||
| ### Option 2: Build from source | ||
| ### Build from source | ||
|
|
||
| First clone the repository somewhere in your `$PATH`. A common place would be within your `$GOPATH`. | ||
|
|
||
|
|
||
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.
Use official product casing:
macOS.MacOSshould bemacOSfor user-facing documentation consistency.Suggested fix
📝 Committable suggestion
🤖 Prompt for AI Agents