From e7f9fd9e75817382623136a80da9513867566c3c Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Feb 2026 21:39:55 +0000 Subject: [PATCH] fix: correct go install path in README The main package lives at cmd/ergo/, not the module root, so `go install github.com/sandover/ergo@latest` fails with "does not contain package". Updated to the correct path: `go install github.com/sandover/ergo/cmd/ergo@latest` https://claude.ai/code/session_01ArzmSRMDHpxMHKLVWs7pqd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ba6d32..6e5bbe7 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Inspired by [beads (bd)](https://github.com/steveyegge/beads), but simpler, soun # Install on Mac -- get homebrew first (https://brew.sh/) brew install sandover/tap/ergo ``` -Or, on Linux: `go install github.com/sandover/ergo@latest` +Or, on Linux: `go install github.com/sandover/ergo/cmd/ergo@latest` #### Step 2 Add this instruction into your `AGENTS.md` or `CLAUDE.md` file