We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module path is inconsistent with go import path. GO111MODULE=on, run go get github.com/liu2hai/chive:
go get github.com/liu2hai/chive
go: downloading github.com/liu2hai/chive v0.0.0-20190817071450-4062106be942 go: github.com/liu2hai/chive upgrade => v0.0.0-20190817071450-4062106be942 go get: github.com/liu2hai/chive@v0.0.0-20190817071450-4062106be942: parsing go.mod: module declares its path as: chive but was required as: github.com/liu2hai/chive
module github.com/liu2hai/chive go 1.12 require ( … )
The text was updated successfully, but these errors were encountered:
@liu2hai Could you help me review this issue? Thx :p
Sorry, something went wrong.
No branches or pull requests
Background
Module path is inconsistent with go import path.
GO111MODULE=on, run
go get github.com/liu2hai/chive
:Solution
Fix the module path:
The text was updated successfully, but these errors were encountered: