Hi,
I have a local package Z under X/Y folder
So, to use the local package Z, I changed in the go.mod of the other package which wants to use it.
replace X/Y/Z => ../Z
After that if I run go mod tidy.
This should ideally create an entry in requires with X/Y/Z v0.0.0-00010101000000-000000000000 but it is bringing back from the internet and adding that module
X/Y/Z v0.6.0
I was able to replace for other couple of local packages.
But one of them isn't happening.
Any help on how and why it is not happening.
Thank you
Susarla Nikhilesh.