tldr
tldr copied to clipboard
[BUG] go install instructions don't work
Is there an existing issue for this?
- [X] I have searched the existing issues
Current Behavior
$ go install github.com/isacikgoz/tldr/cmd/tldr@latest
go: github.com/isacikgoz/tldr/cmd/tldr@latest: module github.com/isacikgoz/tldr@latest found (v0.6.1), but does not contain package github.com/isacikgoz/tldr/cmd/tldr
$ go version
go version go1.21.0 darwin/arm64
Expected Behavior
Install should proceed
Steps To Reproduce
Run the install instructions from the readme
Environment
- OS: macOS 13.5 (22G74)
- Terminal emulator: irrelevant
- Go version: go1.21.0
Anything else?
The latest
version installs v0.6.1
which is 4 years old at the time or writing.
I was able to install it from the master
branch with go install github.com/isacikgoz/tldr/cmd/tldr@master
this does not seem too hard to solve. can I help? I assume changing the recommended installation command to use master
might not be a good option.