Closed
Description
What version of Go are you using (go version
)?
Go 1.11.1
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env
)?
Linux, amd64
Problem
Our go.mod
has the following dependency, along with many other dependencies:
github.com/sirupsen/logrus v1.1.1
When running go mod vendor
, I get the following error:
go: github.com/Sirupsen/[email protected]: parsing go.mod: unexpected module path "github.com/sirupsen/logrus"
I suspect that some deeper indirect dependency is also using logrus, but with the incorrect (old) capital S. However, the error message isn't giving me enough detail to track it down. It would be nice if the tool gave me a list of the modules or packages that are using the conflicting import path.