Update the url to the golang.org for the cover tool

This commit is contained in:
djworth
2015-11-24 09:33:45 -05:00
parent dc43889c87
commit be0626f87a

View File

@@ -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