From aa53f1488cbbef87b9d25f9bedceb4553a42e5ae Mon Sep 17 00:00:00 2001 From: Dave Barnwell Date: Sat, 7 Mar 2026 21:15:55 +0000 Subject: [PATCH 1/2] docs: clarify Go install prerequisite --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 9e5bb74..7b84e5c 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,20 @@ from [GitHub Releases](https://github.com/davebarnwell/rollbar-cli/releases). ### Go install +Install Go first if `go` is not already available on your machine. + +- macOS: `brew install go` or install the official package from [go.dev/dl](https://go.dev/dl/) +- Linux: use your distro package manager or install from [go.dev/dl](https://go.dev/dl/) +- Windows: install from [go.dev/dl](https://go.dev/dl/) + +Verify the install: + +```bash +go version +``` + +Then install `rollbar-cli`: + ```bash go install github.com/davebarnwell/rollbar-cli@latest ``` From 2ee349a6edb2b6d4cc4fb4b95a023142712ef731 Mon Sep 17 00:00:00 2001 From: Dave Barnwell Date: Sat, 7 Mar 2026 21:17:51 +0000 Subject: [PATCH 2/2] docs: show expected go version output --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7b84e5c..7246d48 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ Verify the install: ```bash go version +# example: go version go1.26.0 darwin/arm64 ``` Then install `rollbar-cli`: