summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/internal/modfetch/insecure.go
blob: 8420432d6cdf8db4c68aff4c07c4f545ccb555f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package modfetch

import (
	"cmd/go/internal/cfg"
	"cmd/go/internal/get"
	"cmd/go/internal/str"
)

// allowInsecure reports whether we are allowed to fetch this path in an insecure manner.
func allowInsecure(path string) bool {
	return get.Insecure || str.GlobsMatchPath(cfg.GOINSECURE, path)
}