From 2ead19f31693dab0c73732f7576205bd45c845d5 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Wed, 10 Jan 2018 09:30:28 -0800 Subject: [PATCH] Fix version of go get (#1370) This fix fixes version fetched from `go get` so that versions are guarded. github.com/mholt/caddy v0.10.10 github.com/miekg/dns v1.0.3 github.com/prometheus/client_golang v0.8.0 golang.org/x/net release-branch.go1.9 (branch) golang.org/x/text e19ae1496984b1c655b8044a65c0300a3c878dd3 This fix fixes 1368. Signed-off-by: Yong Tang --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index e9198b243..57dd348af 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,11 @@ godeps: go get github.com/prometheus/client_golang/prometheus go get golang.org/x/net/context go get golang.org/x/text + (cd $(GOPATH)/src/github.com/mholt/caddy && git checkout -q v0.10.10) + (cd $(GOPATH)/src/github.com/miekg/dns && git checkout -q v1.0.3) + (cd $(GOPATH)/src/github.com/prometheus/client_golang && git checkout -q v0.8.0) + (cd $(GOPATH)/src/golang.org/x/net && git checkout -q release-branch.go1.9) + (cd $(GOPATH)/src/golang.org/x/text && git checkout -q e19ae1496984b1c655b8044a65c0300a3c878dd3) .PHONY: travis travis: check