replcae go fmt with gofmt command.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2016-12-30 15:35:07 +08:00 committed by Kim "BKC" Carlbäcker
parent 6510e57758
commit cb18941e63
1 changed files with 1 additions and 1 deletions

View File

@ -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: