mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
Build: change definition of the vars in makefile (#18151)
Prompted by the @slim-bean talk (thanks!). With that definition `GO_FILES` var can be dynamically changed, that will be very helpful in grafana enterprise repo
This commit is contained in:
parent
c8498461a5
commit
8202fa2fde
4
Makefile
4
Makefile
@ -2,8 +2,8 @@
|
||||
|
||||
.PHONY: all deps-go deps-js deps build-go build-server build-cli build-js build build-docker-dev build-docker-full lint-go gosec revive golangci-lint go-vet test-go test-js test run clean devenv devenv-down revive-alerting
|
||||
|
||||
GO := GO111MODULE=on go
|
||||
GO_FILES := ./pkg/...
|
||||
GO = GO111MODULE=on go
|
||||
GO_FILES ?= ./pkg/...
|
||||
|
||||
all: deps build
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user