build: "make fmt" to ignore vendor packages

Several of our vendered dependencies are not gofmt-compliant, but we don't
want to fix that since the vendored code is supposed to exactly match
upstream.
This commit is contained in:
Martin Atkins 2016-05-10 15:40:02 -07:00
parent ac8bbd571d
commit 78a9f8bfb4
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
TEST?=$$(go list ./... | grep -v /vendor/)
VETARGS?=-all
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
default: test vet
@ -80,7 +81,7 @@ generate:
@go fmt command/internal_plugin_list.go > /dev/null
fmt:
gofmt -w .
gofmt -w $(GOFMT_FILES)
fmtcheck:
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"