The replace works. But somehow lately I'm facing issue with replace. In my go.mod file I wrote replace for the package referring it to local package using ../package name
But when I go do go mod tidy in that package, it brings back that package referring to the github.com in the require. I'm not sure what to do. Even tried the go mod edit -replace command too, but if I do go mod tidy it doesn't create a local reference with 00000.00, instead it refers to the original github.com pkg. Thank you On Friday, 27 August 2021 at 04:00:36 UTC+5:30 kortschak wrote: > On Thu, 2021-08-26 at 18:21 -0400, Paul S. R. Chisholm wrote: > > Hypothetical example: Say I'm writing an application that > > uses "rsc.io/quote" and I discover a bug in that package that breaks > > my software. I would of course clone the quote repository, add a test > > that demonstrates the bug, fix the bug, and submit a patch to the > > maintainer. > > > > After making the fix but before submitting the patch, I'd like to > > first import my local copy of the quote package to ensure my change > > prevents the problem in my application. How could I do that? > > > > Back in the GOPATH days, I could presumably have temporarily used a > > relative import path: > > > https://pkg.go.dev/cmd/go#hdr-Import_path_syntax > > > > I'm not sure how that would work in a post-GOPATH environment. (That > > page also talks about programs in a "work space" and not in a "work > > space." Apparently "work space" is a technical term in this context, > > but I don't know what it means. "go help gopath" doesn't help. What > > is and isn't a "work space"?) > > > > Could I clone the quote repository in a vendor/ directory inside my > > application directory structure? Are vendor/ directories still used > > in post-GOPATH environments, or are they considered deprecated or > > obsolete? > > > > Thanks. --PSRC > > Module replace statements will help you here. > > > > https://github.com/golang/go/wiki/Modules#when-should-i-use-the-replace-directive > > > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/474450e0-f408-4207-888f-3d76cd0be5f9n%40googlegroups.com.