File: //opt/golang/1.22.0/src/cmd/go/testdata/script/mod_list_dir.txt
[short] skip
# go list with path to directory should work
# populate go.sum
go get
env GO111MODULE=off
go list -f '{{.ImportPath}}' $GOROOT/src/math
stdout ^math$
env GO111MODULE=on
go list -f '{{.ImportPath}}' $GOROOT/src/math
stdout ^math$
go list -f '{{.ImportPath}}' .
stdout ^x$
go mod download rsc.io/[email protected]
go list -f '{{.ImportPath}}' $GOPATH/pkg/mod/rsc.io/[email protected]
stdout '^rsc.io/quote$'
go list -f '{{.ImportPath}}' $GOPATH/pkg/mod/rsc.io/[email protected]
stdout '^rsc.io/sampler$'
go get rsc.io/[email protected]
go list -f '{{.ImportPath}}' $GOPATH/pkg/mod/rsc.io/[email protected]
stdout '^rsc.io/sampler$'
! go list -f '{{.ImportPath}}' $GOPATH/pkg/mod/rsc.io/[email protected]
stderr 'outside main module or its selected dependencies'
-- go.mod --
module x
require rsc.io/quote v1.5.2
-- x.go --
package x
import _ "rsc.io/quote"