diff --git a/makefile b/makefile index ad8c91e..60c1fd6 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ VERSION=1.2 GITHASH=$(shell git rev-parse --short=8 HEAD) -ASSETS = assets/javascripts/* assets/stylesheets/* assets/graphicarts/* assets/index.html +ASSETS = assets/javascripts/* assets/stylesheets/* assets/graphicarts/* assets/*.html CGO_ENABLED=1 GO_LDFLAGS = -s -w diff --git a/scripts/bundle_assets.go b/scripts/bundle_assets.go index fb9369c..e3ae748 100644 --- a/scripts/bundle_assets.go +++ b/scripts/bundle_assets.go @@ -51,6 +51,7 @@ func encode(b []byte) string { func main() { assets := make([]asset, 0) filepatterns := []string{ + "assets/login.html", "assets/graphicarts/*.svg", "assets/graphicarts/*.png", "assets/javascripts/*.js",