giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
28 lines
548 B
Go
28 lines
548 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//go:build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"gitea.dev/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)
|
|
}
|
|
}
|