From 5f09148e37f12ac963a2cb23db793204f03dfe62 Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Fri, 1 Jan 2016 23:14:24 +0530 Subject: [PATCH] Include gocov stuff in tools These two tools are used in the "cov" Makefile target, but installing these were not automated. This PR removes the ambiguity where a developer tries to do a `make cov` and finds that the tools are not installed. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 82d9df435..746e04152 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,9 @@ EXTERNAL_TOOLS=\ github.com/tools/godep \ github.com/mitchellh/gox \ golang.org/x/tools/cmd/cover \ - golang.org/x/tools/cmd/vet + golang.org/x/tools/cmd/vet \ + github.com/axw/gocov/gocov \ + gopkg.in/matm/v1/gocov-html all: test