From 873f053d102c3eb95d0fadc88aac028d2cf2a226 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sun, 24 Nov 2019 13:14:54 -0800 Subject: [PATCH] Add verbose version output in Makefile * Inspect why Travis builds may still show a diff --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 47d807a3..85f424b9 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,9 @@ all: build test vet lint fmt build: clean bin/matchbox bin/%: + git describe --tags --match=v* --always --dirty + git status + git diff @go build -o bin/$* -ldflags $(LD_FLAGS) $(REPO)/cmd/$* .PHONY: test