From 497158d0f65affa5159dbb794a534b80fdefc4ef Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Mon, 20 Jul 2020 18:57:19 -0700 Subject: [PATCH] Fail early on builds. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b4632eef..d07ba8fb 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ SRC=$(shell find . -type f -name '*.go' -not -path "./vendor/*") GOOS_OVERRIDE ?= OUTPUT_ROOT=output/ -all: build test lint +all: lint test build .PHONY: all