Revision 258696409d9afc7e5f4a509d9395c1a3c9502cdf authored by Josh Hunt on 14 December 2022, 14:24:09 UTC, committed by GitHub on 14 December 2022, 14:24:09 UTC
* Dashboards: Fix 'Make Editable' button not working in Dashboard Settings

* comment
1 parent ac93c53
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