From e89f87624f27b7b98efc959bd96e260ac86f9236 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Fri, 20 Jul 2018 15:46:14 +0200 Subject: generate markdown documentation --- pack_webui.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pack_webui.go') diff --git a/pack_webui.go b/pack_webui.go index 845b150b..bbddeb70 100644 --- a/pack_webui.go +++ b/pack_webui.go @@ -3,6 +3,7 @@ package main import ( + "fmt" "log" "net/http" "os" @@ -16,6 +17,8 @@ func main() { webUIAssets := http.Dir(filepath.Join(cwd, "webui/build")) + fmt.Println("Packing Web UI files ...") + err := vfsgen.Generate(webUIAssets, vfsgen.Options{ Filename: "webui/packed_assets.go", PackageName: "webui", -- cgit