summaryrefslogtreecommitdiffstats
path: root/modules/templates
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2020-01-27 01:05:38 +0000
committerGitHub <noreply@github.com>2020-01-27 01:05:38 +0000
commit48abe41ea82f88235bd6a6a66f6a2d1701215b84 (patch)
treec4b42644f047f3f09314acd034f283f3804d2f68 /modules/templates
parentd087f4fb735d860a394baf709f4cac5b945f9287 (diff)
downloadgitea-48abe41ea82f88235bd6a6a66f6a2d1701215b84.tar.gz
gitea-48abe41ea82f88235bd6a6a66f6a2d1701215b84.zip
Generate Bindata iff TAGS="bindata" and not up-to-date (#10004)
* Only generate bindata if necessary * Only generate bindata if they are not up-to-date * generate a hash of the fileinfo and use that to keep up-to-date * Newer test is redundant * handle missing bindata and clean * Only update hash after successful write * switch to sha1 hash * Apply suggestions from code review Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
Diffstat (limited to 'modules/templates')
-rw-r--r--modules/templates/main.go23
-rw-r--r--modules/templates/templates_bindata.go (renamed from modules/templates/templates.go)4
2 files changed, 3 insertions, 24 deletions
diff --git a/modules/templates/main.go b/modules/templates/main.go
deleted file mode 100644
index 4460f58cbf..0000000000
--- a/modules/templates/main.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// +build ignore
-
-package main
-
-import (
- "log"
- "net/http"
-
- "github.com/shurcooL/vfsgen"
-)
-
-func main() {
- var fsTemplates http.FileSystem = http.Dir("../../templates")
- err := vfsgen.Generate(fsTemplates, vfsgen.Options{
- PackageName: "templates",
- BuildTags: "bindata",
- VariableName: "Assets",
- Filename: "bindata.go",
- })
- if err != nil {
- log.Fatal("%v", err)
- }
-}
diff --git a/modules/templates/templates.go b/modules/templates/templates_bindata.go
index af6bf010c1..eaf64d9457 100644
--- a/modules/templates/templates.go
+++ b/modules/templates/templates_bindata.go
@@ -2,6 +2,8 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
+//+build bindata
+
package templates
-//go:generate go run -mod=vendor main.go
+//go:generate go run -mod=vendor ../../scripts/generate-bindata.go ../../templates templates bindata.go