Merge pull request #6954 from drekle/makefile_gofmt

Make gofmt fails find usage
This commit is contained in:
Kubernetes Prow Robot 2019-05-14 10:35:31 -07:00 committed by GitHub
commit 2bfb36fd0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ dep-ensure: dep-prereqs
.PHONY: gofmt
gofmt:
find -name "*.go" | grep -v vendor | xargs bazel run //:gofmt -- -w -s
find $(MAKEDIR) -name "*.go" | grep -v vendor | xargs bazel run //:gofmt -- -w -s
.PHONY: goimports
goimports: