Revision 032b615de2fcb8e4e0bb9590f4107986ce6234f2 authored by Dimitris Sotirakis on 12 May 2023, 12:25:27 UTC, committed by GitHub on 12 May 2023, 12:25:27 UTC
CI: Add `.drone.yml` in pathschanged trigger for `lint_backend` pipeline (#68348)

Add .drone.yml in pathschanged for lint_backend

(cherry picked from commit b7b13067a5d4269a9fe832a7decc28328f2f41ea)

# Conflicts:
#	.drone.yml
1 parent c1e8c3b
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