aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/get_insecure_update.txt
blob: e1a1a23d47e475a34927e55bd570389a0b27dc09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[!net] skip
[!exec:git] skip
env GO111MODULE=off

# Clone the repo via HTTP manually.
exec git clone -q http://github.com/golang/example github.com/golang/example

# Update without GOINSECURE should fail.
# We need -f to ignore import comments.
! go get -d -u -f github.com/golang/example/hello

# Update with GOINSECURE should succeed.
env GOINSECURE=github.com/golang/example/hello
go get -d -u -f github.com/golang/example/hello