From 2549a7c2a42c34744dc7c10a2bfbbb443dafe3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aitor=20P=C3=A9rez=20Cedres?= Date: Mon, 2 Jan 2023 16:20:08 +0000 Subject: [PATCH] Print output of gofmt before evaluating MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aitor PĂ©rez Cedres --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 9a344c0..e51ef61 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ list: ## list Makefile targets .PHONY: check-fmt check-fmt: ## Ensure code is formatted + gofmt -l . # For the sake of debugging test -z "$$(gofmt -l .)" .PHONY: fmt