From ba9c26e6895a3fe05a331dcbef47bc64a41a18ff Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Mon, 2 Apr 2018 16:39:14 -0500 Subject: [PATCH] Code review fixes: Create build directory if it doesn't exist. Use better URL for protoc installation instructions. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6094495e3..824d23cad 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ test: vendor # Run test suite with coverage enabled cover: vendor + mkdir -p build $(MAKE) test TESTFLAGS="-coverprofile=build/coverage.out" # Run test suite with coverage enabled and view coverage results in browser @@ -130,4 +131,4 @@ install-protoc-gen-gofast: go get -u github.com/gogo/protobuf/protoc-gen-gofast install-protoc: - @echo This tool cannot automatically install protoc. Please download and install protoc from https://github.com/google/protobuf/releases + @echo This tool cannot automatically install protoc. Please download and install protoc from https://google.github.io/proto-lens/installing-protoc.html