mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 06:46:36 +01:00
24 lines
327 B
Go
24 lines
327 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/shurcooL/vfsgen"
|
|
|
|
"github.com/openshift/installer/data"
|
|
)
|
|
|
|
func main() {
|
|
err := vfsgen.Generate(data.Assets, vfsgen.Options{
|
|
PackageName: "data",
|
|
BuildTags: "release",
|
|
VariableName: "Assets",
|
|
})
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|