From be0626f87a255e11aae0f0b57db1e76455602c57 Mon Sep 17 00:00:00 2001 From: djworth Date: Tue, 24 Nov 2015 09:33:45 -0500 Subject: [PATCH] Update the url to the golang.org for the cover tool --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 673751c..e6d02c0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ all: setup cover setup: - go get code.google.com/p/go.tools/cmd/cover + go get golang.org/x/tools/cmd/cover go get ./... test: @@ -15,4 +15,3 @@ cover: go test -v -coverprofile=playstore.txt -covermode=count ./playstore cat playstore.txt | grep -v "mode: count" >> coverage.txt rm playstore.txt -