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

Commits on Jul 12, 2024

  1. Fix the module definition in go.mod

    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
    Sebatyne committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    de2f034 View commit details
    Browse the repository at this point in the history