Merge pull request #6607 from apparentlymart/make-fmt-nonvendor
build: "make fmt" to ignore vendor packages
This commit is contained in:
commit
f0b39b6ced
3
Makefile
3
Makefile
|
@ -1,5 +1,6 @@
|
||||||
TEST?=$$(go list ./... | grep -v /vendor/)
|
TEST?=$$(go list ./... | grep -v /vendor/)
|
||||||
VETARGS?=-all
|
VETARGS?=-all
|
||||||
|
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
||||||
|
|
||||||
default: test vet
|
default: test vet
|
||||||
|
|
||||||
|
@ -80,7 +81,7 @@ generate:
|
||||||
@go fmt command/internal_plugin_list.go > /dev/null
|
@go fmt command/internal_plugin_list.go > /dev/null
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
gofmt -w .
|
gofmt -w $(GOFMT_FILES)
|
||||||
|
|
||||||
fmtcheck:
|
fmtcheck:
|
||||||
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
|
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
|
||||||
|
|
Loading…
Reference in New Issue