Commit 2ead19f3 authored by Yong Tang's avatar Yong Tang Committed by GitHub

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: default avatarYong Tang <yong.tang.github@outlook.com>
parent b7476d02
...@@ -30,6 +30,11 @@ godeps: ...@@ -30,6 +30,11 @@ godeps:
go get github.com/prometheus/client_golang/prometheus go get github.com/prometheus/client_golang/prometheus
go get golang.org/x/net/context go get golang.org/x/net/context
go get golang.org/x/text 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 .PHONY: travis
travis: check travis: check
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment