From 4042392a2dc60ce3ef82fe58d5a05e0ad2e78797 Mon Sep 17 00:00:00 2001 From: Tobias Schmidt Date: Wed, 27 Jul 2016 19:01:51 -0400 Subject: [PATCH] Always format generated assets It's easy to forget formatting assets after re-generating them, so let's do this automatically. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 2ccfe9e90..2484b7807 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,7 @@ assets: @echo ">> writing assets" @$(GO) get -u github.com/jteeuwen/go-bindata/... @go-bindata $(bindata_flags) -pkg ui -o web/ui/bindata.go -ignore '(.*\.map|bootstrap\.js|bootstrap-theme\.css|bootstrap\.css)' web/ui/templates/... web/ui/static/... + @$(GO) fmt ./web/ui promu: @GOOS=$(shell uname -s | tr A-Z a-z) \