Revision bdb97496ec627cc2ae593333e5b27ee7102f973b authored by Leon Sorokin on 19 October 2022, 20:01:50 UTC, committed by GitHub on 19 October 2022, 20:01:50 UTC
1 parent 3e6bc28
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