Don't check vendor code for gofmt, it takes forever (#661)

This commit is contained in:
John Belamaric
2017-05-05 15:33:18 -04:00
committed by GitHub
parent b7dd1559c1
commit afec8963c6

View File

@@ -52,7 +52,7 @@ gen:
.PHONY: fmt
fmt:
## run go fmt
@test -z "$$(gofmt -s -l . | grep -v vendor/ | tee /dev/stderr)" || \
@test -z "$$(find . -type d | grep -vE '(/vendor|^\.$$|/.git|/.travis)' | xargs gofmt -s -l | tee /dev/stderr)" || \
(echo "please format Go code with 'gofmt -s -w'" && false)
.PHONY: lint