From cb18941e639e4e2151b275a082b31c1d344c8906 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Fri, 30 Dec 2016 15:35:07 +0800 Subject: [PATCH] replcae go fmt with gofmt command. Signed-off-by: Bo-Yi Wu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7fd49bb65..f38a26ed3 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: