summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7fd49bb655..f38a26ed3a 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ clean:
.PHONY: fmt
fmt:
- go fmt $(PACKAGES)
+ find . -name "*.go" -type f -not -path "./vendor/*" | xargs gofmt -s -w
.PHONY: vet
vet: