Revision 62314bbf66baed13d7af8905f7b743ae183fb2d8 authored by Dimitris Sotirakis on 11 October 2022, 15:58:03 UTC, committed by GitHub on 11 October 2022, 15:58:03 UTC
1 parent 6a74cd2
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