From 617b3a5a6f79611b09dcc31af3dc36a8d3cd2be0 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 8 Aug 2026 23:11:07 -0700 Subject: [PATCH] docs: note the interim go install path after the module rename `@latest` on the new module path cannot resolve until the first post-rename tag is published; document the working pinned command. Co-Authored-By: Claude Fable 5 --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index d018705f2..d7a78d350 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,15 @@ go install github.com/openclaw/gogcli/cmd/gog@latest gog --version ``` +The module path moved from `github.com/steipete/gogcli` to +`github.com/openclaw/gogcli`. Until the first release tagged after that move is +published, `@latest` still selects an older tag that declares the previous path +and fails; install a specific version from the old path in the meantime: + +```bash +go install github.com/steipete/gogcli/cmd/gog@v0.34.2 +``` + Docker images, Windows archives, raw macOS/Linux binaries, and source builds are covered in the [install guide](docs/install.md).