-
Notifications
You must be signed in to change notification settings - Fork 104
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
go mod and replace directive does not work well when consumed as library #334
Comments
I don't believe that would help at all. As upstream dependency's So if you |
Why are you inheriting |
we are building an easy way to configure opsman+tiles |
It would really help us, you, (and other |
they have merged it. |
we can. We are in the middle of fixing the CI at the moment, so feel free to submit a PR, or we should be able to get to it either today, tomorrow, or, at worst, sometime early next week. |
when we consume
om
in our own go library above version0.51.0
go mod will fail. because it won't inherent the replace directive.
which then result in a compile error due to a missing dependency
see line: https://github.com/pivotal-cf/om/blob/master/go.mod#L44
i think this can be solved by
removing the replace directive and use the folowing instead
go mod edit https://github.com/graymeta/stow@TheCommitHasYouWantToUse
refrence: golang/go#30354
The text was updated successfully, but these errors were encountered: