The github path does not match the module declaration, causing go get to fail.
The README says that go get github.com/ShimmerGlass/bar3x works, but because the github path does not match the Go module declaration (case sensitive) the command fails:
$ go get github.com/ShimmerGlass/bar3x ~
go get: github.com/ShimmerGlass/bar3x@none updating to
github.com/ShimmerGlass/bar3x@v0.3.6: parsing go.mod:
module declares its path as: github.com/shimmerglass/bar3x
but was required as: github.com/ShimmerGlass/bar3x
This makes the package not go-gettable.
- Go: 1.16.2
- OS: Linux 5.11.6-arch1-1 x86_64
- bar3x: v0.3.6
The github path does not match the module declaration, causing
go getto fail.The README says that
go get github.com/ShimmerGlass/bar3xworks, but because the github path does not match the Go module declaration (case sensitive) the command fails:This makes the package not go-gettable.