-
Notifications
You must be signed in to change notification settings - Fork 97
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 go.mod to make module importable #41
Conversation
Currently, module is not importable: ``` $ go mod download go: github.com/DHowett/[email protected]: parsing go.mod: unexpected module path "howett.net/plist" ``` This commit should fix this. Regards,
HI @DHowett , my bad, i didn't see this :-) Still, i don't get how we should deal with transitive dependencies that import your module. I had to temporary fix it with a
Since How should your module be used to avoid this Best, |
(this should work)
It should be an importable Go path!
If |
Fair enough :-) |
Running into this issue too and using the replace method worked. Genuine question, but why not just use |
@cjbassi alas, github is not the primary source for this package. I do not personally believe in promoting a software monoculture of any kind, so I don't think I should tie myself or others to GitHub[1]. I've discussed this a bit more here, if you're interested! [1]: (personal opinion, not that of my employer, standard disclaimers apply, no warranty, etc.) |
Currently, module is not importable:
This commit should fix this.
Regards,