From 8b6210ac8e4f9faa5235a89d1677ff409f55439a Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 8 Jan 2020 11:27:46 +0100 Subject: [PATCH] build: compile all go files with "make" No need to compile the files under the contrib/ directory. Signed-off-by: Niels de Vos --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1873c3c..433cca4 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ ifeq ($(SELINUX),Enforcing) endif build: - go build -v + go build -v $(shell go list ./... | grep -v /contrib) fmt: go fmt ./... test: