don't release embedded files in development mode
This commit is contained in:
parent
4db9b13803
commit
d93157bde4
10
main.go
10
main.go
@ -2,6 +2,8 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"embed"
|
"embed"
|
||||||
|
"runtime/debug"
|
||||||
|
"strings"
|
||||||
|
|
||||||
backend "rwkv-runner/backend-golang"
|
backend "rwkv-runner/backend-golang"
|
||||||
|
|
||||||
@ -23,9 +25,11 @@ var cyacInfo embed.FS
|
|||||||
var py embed.FS
|
var py embed.FS
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
backend.CopyEmbed(cyac)
|
if buildInfo, ok := debug.ReadBuildInfo(); !ok || strings.Contains(buildInfo.String(), "-ldflags") {
|
||||||
backend.CopyEmbed(cyacInfo)
|
backend.CopyEmbed(cyac)
|
||||||
backend.CopyEmbed(py)
|
backend.CopyEmbed(cyacInfo)
|
||||||
|
backend.CopyEmbed(py)
|
||||||
|
}
|
||||||
|
|
||||||
// Create an instance of the app structure
|
// Create an instance of the app structure
|
||||||
app := backend.NewApp()
|
app := backend.NewApp()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user