You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, go get github.com/runZeroInc/recog-go@latest (or just go get github.com/runZeroInc/recog-go) is broken, because it points to v0.1.0, which used the old package name prior to the repo move:
go: github.com/runZeroInc/[email protected]: parsing go.mod:
module declares its path as: github.com/RumbleDiscovery/recog-go
but was required as: github.com/runZeroInc/recog-go
Currently,
go get github.com/runZeroInc/recog-go@latest
(or justgo get github.com/runZeroInc/recog-go
) is broken, because it points to v0.1.0, which used the old package name prior to the repo move:@latest
will use semver to determine what "latest" is, and v0.1.0 > v0.0.115.Workaround is to explicitly
go get
:go get github.com/runZeroInc/[email protected]
The text was updated successfully, but these errors were encountered: