Add verbose version output in Makefile

* Inspect why Travis builds may still show a diff
This commit is contained in:
Dalton Hubble
2019-11-24 13:14:54 -08:00
parent 82e97ed654
commit 873f053d10

View File

@@ -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