updates
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-11 13:28:59 +11:00
parent 60af423335
commit 8698983bbf
2 changed files with 17 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ RUN go mod download
COPY . .
RUN go run ./cmd/webui-gen
ARG TARGETOS
ARG TARGETARCH
RUN XTEVE_VERSION="$(grep -m1 '^#### ' changelog-beta.md | cut -d' ' -f2 | sed 's/-beta$//')" \

15
cmd/webui-gen/main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"log"
"os"
"xteve/src"
)
func main() {
src.HTMLInit("webUI", "src", "html"+string(os.PathSeparator), "src"+string(os.PathSeparator)+"webUI.go")
if err := src.BuildGoFile(); err != nil {
log.Fatal(err)
}
}