File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ DOCKER_CLI_EXPERIMENTAL ?= enabled
37
37
38
38
.PHONY : test
39
39
test :
40
- go test ./...
40
+ GO111MODULE=on go test ./...
41
41
42
42
# # --------------------------------------
43
43
# # Binaries
50
50
build : bin/proxy-agent bin/proxy-server bin/proxy-test-client
51
51
52
52
bin/proxy-agent : bin cmd/agent/main.go proto/agent/agent.pb.go
53
- go build -o bin/proxy-agent cmd/agent/main.go
53
+ GO111MODULE=on go build -o bin/proxy-agent cmd/agent/main.go
54
54
55
55
bin/proxy-test-client : bin cmd/client/main.go proto/proxy.pb.go
56
- go build -o bin/proxy-test-client cmd/client/main.go
56
+ GO111MODULE=on go build -o bin/proxy-test-client cmd/client/main.go
57
57
58
58
bin/proxy-server : bin cmd/proxy/main.go proto/agent/agent.pb.go proto/proxy.pb.go
59
- go build -o bin/proxy-server cmd/proxy/main.go
59
+ GO111MODULE=on go build -o bin/proxy-server cmd/proxy/main.go
60
60
61
61
# # --------------------------------------
62
62
# # Linting
Original file line number Diff line number Diff line change 1
1
module sigs.k8s.io/apiserver-network-proxy
2
2
3
- go 1.13
3
+ go 1.12
4
4
5
5
require (
6
6
github.com/beorn7/perks v1.0.0 // indirect
You can’t perform that action at this time.
0 commit comments