Skip to content

Commit

Permalink
[FAB-9209] fix make gotools
Browse files Browse the repository at this point in the history
Change-Id: I865d81da3fbeb8d627ec25d42f2df453651c83d3
Signed-off-by: Matthew Sykes <[email protected]>
  • Loading branch information
sykesm committed Mar 31, 2018
1 parent 310aa14 commit 62b357d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gotools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ gotool.ginkgo:
@GOPATH=$(abspath $(TMP_GOPATH)) go install github.com/onsi/ginkgo/ginkgo

# Lock to a versioned dep
gotool.dep: DEP_VERSION ?= "0.4.1"
gotool.dep: DEP_VERSION ?= "v0.4.1"
gotool.dep:
@echo "Getting dep $(DEP_VERSION)"
@GOPATH=$(abspath $(TMP_GOPATH)) go get -d github.com/golang/dep
@cd $(abspath $(TMP_GOPATH)) git checkout $(DEP_VERSION)
@GOPATH=$(abspath $(TMP_GOPATH)) go get -d -u github.com/golang/dep
@cd $(abspath $(TMP_GOPATH))/src/github.com/golang/dep && git checkout -q $(DEP_VERSION)
@echo "Building github.com/golang/dep -> dep"
@GOPATH=$(abspath $(TMP_GOPATH)) go install -ldflags="-X main.version=$(DEP_VERSION) -X main.buildDate=$$(date '+%Y-%m-%d')" github.com/golang/dep/cmd/dep

Expand Down

0 comments on commit 62b357d

Please sign in to comment.