aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/internal/modfetch/insecure.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/internal/modfetch/insecure.go')
-rw-r--r--src/cmd/go/internal/modfetch/insecure.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmd/go/internal/modfetch/insecure.go b/src/cmd/go/internal/modfetch/insecure.go
index b692669cba..012d05f29d 100644
--- a/src/cmd/go/internal/modfetch/insecure.go
+++ b/src/cmd/go/internal/modfetch/insecure.go
@@ -6,12 +6,11 @@ package modfetch
import (
"cmd/go/internal/cfg"
- "cmd/go/internal/get"
"golang.org/x/mod/module"
)
// allowInsecure reports whether we are allowed to fetch this path in an insecure manner.
func allowInsecure(path string) bool {
- return get.Insecure || module.MatchPrefixPatterns(cfg.GOINSECURE, path)
+ return cfg.Insecure || module.MatchPrefixPatterns(cfg.GOINSECURE, path)
}