I'm converting one of my internal projects from glide to a module, after
having done two other conversions. But I am hitting a problem that I can't
yet solve.

$ GO111MODULE=on go mod tidy -v

Fetching https://gotest.tools?go-get=1
https fetch failed: Get https://gotest.tools?go-get=1: Forbidden
go: gotest.tools@v2.1.0+incompatible: unrecognized import path
"gotest.tools" (https fetch failed: Get https://gotest.tools?go-get=1:
Forbidden)
go: error loading module requirements

My http proxy won't let me access this, and I can't find usage of it
anywhere in my own codebase or in the immediate dependencies (or even my
$GOPATH). The mod subcommand isn't being very specific about where this
dependency is coming from (even with the graph command). Any pointers would
be greatly appreciated. The dependency didn't show up in my glide.lock
originally.

My module requirements are:

require (
        github.com/boltdb/bolt v1.3.1
        github.com/elazarl/go-bindata-assetfs v1.0.0
        github.com/gorilla/context v1.1.1
        github.com/gorilla/mux v1.3.0
        github.com/pborman/uuid v1.2.0
        golang.org/x/sys v0.0.0-20170615053224-fb4cac33e319
        gopkg.in/yaml.v2 v2.2.0
)


Justin

-- 
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.
For more options, visit https://groups.google.com/d/optout.

Reply via email to