summaryrefslogtreecommitdiffstats
path: root/modules/public
diff options
context:
space:
mode:
Diffstat (limited to 'modules/public')
-rw-r--r--modules/public/main.go23
-rw-r--r--modules/public/public.go2
-rw-r--r--modules/public/public_bindata.go9
3 files changed, 9 insertions, 25 deletions
diff --git a/modules/public/main.go b/modules/public/main.go
deleted file mode 100644
index 707dbe2b22..0000000000
--- a/modules/public/main.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// +build ignore
-
-package main
-
-import (
- "log"
- "net/http"
-
- "github.com/shurcooL/vfsgen"
-)
-
-func main() {
- var fsPublic http.FileSystem = http.Dir("../../public")
- err := vfsgen.Generate(fsPublic, vfsgen.Options{
- PackageName: "public",
- BuildTags: "bindata",
- VariableName: "Assets",
- Filename: "bindata.go",
- })
- if err != nil {
- log.Fatal("%v", err)
- }
-}
diff --git a/modules/public/public.go b/modules/public/public.go
index c16c8e0009..2617d31aea 100644
--- a/modules/public/public.go
+++ b/modules/public/public.go
@@ -18,8 +18,6 @@ import (
"gitea.com/macaron/macaron"
)
-//go:generate go run -mod=vendor main.go
-
// Options represents the available options to configure the macaron handler.
type Options struct {
Directory string
diff --git a/modules/public/public_bindata.go b/modules/public/public_bindata.go
new file mode 100644
index 0000000000..68a786c767
--- /dev/null
+++ b/modules/public/public_bindata.go
@@ -0,0 +1,9 @@
+// Copyright 2020 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+//+build bindata
+
+package public
+
+//go:generate go run -mod=vendor ../../scripts/generate-bindata.go ../../public public bindata.go