1
0
mirror of https://github.com/strongdm/comply synced 2025-12-06 14:24:12 +00:00
This commit is contained in:
Justin McCarthy
2018-05-10 23:23:50 -07:00
parent a383b24a66
commit bb1a7f3f0f
4 changed files with 31 additions and 3 deletions

View File

@@ -3,8 +3,11 @@ GO_SOURCES := $(shell find . -name '*.go')
THEME_SOURCES := $(shell find themes)
assets: $(THEME_SOURCES)
go-bindata-assetfs -pkg theme -prefix themes themes/...
mv bindata_assetfs.go internal/theme/themes_bindata.go
go get github.com/jteeuwen/go-bindata/...
go get github.com/elazarl/go-bindata-assetfs/...
go install github.com/elazarl/go-bindata-assetfs
go-bindata-assetfs -o bindata.go -pkg theme -prefix themes themes/...
mv bindata.go internal/theme/themes_bindata.go
comply: assets $(GO_SOURCES)
go build github.com/strongdm/comply/cmd/comply