mirror of https://github.com/k3s-io/k3s.git
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
bindata "github.com/go-bindata/go-bindata"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
os.Unsetenv("GOPATH")
|
|
bc := &bindata.Config{
|
|
Input: []bindata.InputConfig{
|
|
{
|
|
Path: "build/data",
|
|
Recursive: true,
|
|
},
|
|
},
|
|
Package: "data",
|
|
NoCompress: true,
|
|
NoMemCopy: true,
|
|
NoMetadata: true,
|
|
Output: "pkg/data/zz_generated_bindata.go",
|
|
}
|
|
if err := bindata.Translate(bc); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
bc = &bindata.Config{
|
|
Input: []bindata.InputConfig{
|
|
{
|
|
Path: "manifests",
|
|
Recursive: true,
|
|
},
|
|
},
|
|
Package: "deploy",
|
|
NoMetadata: true,
|
|
Prefix: "manifests/",
|
|
Output: "pkg/deploy/zz_generated_bindata.go",
|
|
Tags: "!no_stage",
|
|
}
|
|
if err := bindata.Translate(bc); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
bc = &bindata.Config{
|
|
Input: []bindata.InputConfig{
|
|
{
|
|
Path: "build/static",
|
|
Recursive: true,
|
|
},
|
|
},
|
|
Package: "static",
|
|
NoMetadata: true,
|
|
Prefix: "build/static/",
|
|
Output: "pkg/static/zz_generated_bindata.go",
|
|
Tags: "!no_stage",
|
|
}
|
|
if err := bindata.Translate(bc); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|