Skip to content
New issue

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

Fix the module definition in go.mod #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Sebatyne
Copy link

Hello,

The module definition in go.mod should contain the import path of the module, and not only the package name. Otherwise it prevents it from being "go install"ed:

$ go install github.com/ifad/clammit@latest
go: downloading github.com/ifad/clammit v0.8.1
go: github.com/ifad/clammit@latest: version constraints conflict:
github.com/ifad/clammit@v0.8.1: parsing go.mod:
module declares its path as: clammit
but was required as: github.com/ifad/clammit

Here is the relevant specification in the go definition:

Syntax
module module-path

module-path
The module's module path, usually the repository location from which the module can be downloaded by Go tools.

Regards,

It should contain the import path of the module, and not only the
package name, otherwise it prevents it from being "go install"ed:

$ go install github.com/ifad/clammit@latest
go: downloading github.com/ifad/clammit v0.8.1
go: github.com/ifad/clammit@latest: version constraints conflict:
        github.com/ifad/clammit@v0.8.1: parsing go.mod:
        module declares its path as: clammit
                but was required as: github.com/ifad/clammit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant