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
Command:
GO111MODULE=on go get github.com/andrewstuart/goq@v1.0.0
Outputs:
go: finding github.com v1.0.0 go: finding github.com/andrewstuart v1.0.0 go: finding github.com/andrewstuart/goq v1.0.0 go: downloading github.com/andrewstuart/goq v1.0.0 go: extracting github.com/andrewstuart/goq v1.0.0 go get: github.com/andrewstuart/goq@v1.0.0: parsing go.mod: module declares its path as: astuart.co/goq but was required as: github.com/andrewstuart/goq
I fixed it with:
replace ( github.com/andrewstuart/goq => astuart.co/goq v1.0.0 )
But maybe there is a way to fix it on side of repo?
The text was updated successfully, but these errors were encountered:
Just do go get astuart.co/goq instead? No need for replace.
go get astuart.co/goq
Sorry, something went wrong.
No branches or pull requests
Command:
Outputs:
I fixed it with:
But maybe there is a way to fix it on side of repo?
The text was updated successfully, but these errors were encountered: