func init()

in go/base-arm/rootfs/entrypoint.go [35:42]


func init() {
	rootCmd.PersistentFlags().StringVarP(&buildCommand, "build-cmd", "c",
		"make build", "Build command to execute.")

	rootCmd.PersistentFlags().StringSliceVarP(&platforms, "platforms", "p", nil,
		"Target platform for the binary in GOOS/GOARCH format (e.g. windows/amd64).")
	rootCmd.MarkPersistentFlagRequired("platforms")
}