fixed 打包
This commit is contained in:
parent
0272990cbe
commit
c7be4d0f9a
5
build.sh
5
build.sh
|
|
@ -11,5 +11,10 @@ go run build/generate-bindata.go options options vendor/code.gitea.io/gitea/modu
|
|||
go run build/generate-bindata.go public public vendor/code.gitea.io/gitea/modules/public/bindata.go
|
||||
go run build/generate-bindata.go templates templates vendor/code.gitea.io/gitea/modules/templates/bindata.go
|
||||
|
||||
go run build/generate-bindata-new.go modules/schemas vendor/code.gitea.io/gitea/modules/migration/bindata.dat
|
||||
go run build/generate-bindata-new.go options vendor/code.gitea.io/gitea/modules/options/bindata.dat
|
||||
go run build/generate-bindata-new.go public vendor/code.gitea.io/gitea/modules/public/bindata.dat
|
||||
go run build/generate-bindata-new.go templates vendor/code.gitea.io/gitea/modules/templates/bindata.dat
|
||||
|
||||
echo "go build -tags 'bindata' -o gitea_hat main.go..."
|
||||
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -tags 'bindata' -o gitea_hat main.go
|
||||
|
|
|
|||
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2020 The Gitea Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
//go:build ignore
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"code.gitea.io/gitea/modules/assetfs"
|
||||
)
|
||||
|
||||
func main() {
|
||||
if len(os.Args) != 3 {
|
||||
fmt.Println("usage: ./generate-bindata {local-directory} {bindata-filename}")
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
dir, filename := os.Args[1], os.Args[2]
|
||||
fmt.Printf("generating bindata for %s to %s\n", dir, filename)
|
||||
if err := assetfs.GenerateEmbedBindata(dir, filename); err != nil {
|
||||
fmt.Printf("failed: %s\n", err.Error())
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue