Revision 4cee9109711bdcd46e464f290d870a5e6860c4e6 authored by Grot (@grafanabot) on 18 October 2022, 12:45:30 UTC, committed by GitHub on 18 October 2022, 12:45:30 UTC
1 parent 423643a
Raw File
build.go
// +build ignore

package main

import (
	"log"
	"os"

	"github.com/grafana/grafana/pkg/build"
)

func main() {
	log.SetOutput(os.Stdout)
	log.SetFlags(0)
	os.Exit(build.RunCmd())
}
back to top