mirror of https://github.com/grafana/grafana.git
Merge pull request #11610 from grafana/davkal/bra-use-build-script
bra should use the proper build script
This commit is contained in:
commit
0976a46cb3
|
|
@ -1,6 +1,6 @@
|
||||||
[run]
|
[run]
|
||||||
init_cmds = [
|
init_cmds = [
|
||||||
["go", "build", "-o", "./bin/grafana-server", "./pkg/cmd/grafana-server"],
|
["go", "run", "build.go", "build"],
|
||||||
["./bin/grafana-server", "cfg:app_mode=development"]
|
["./bin/grafana-server", "cfg:app_mode=development"]
|
||||||
]
|
]
|
||||||
watch_all = true
|
watch_all = true
|
||||||
|
|
@ -12,6 +12,6 @@ watch_dirs = [
|
||||||
watch_exts = [".go", ".ini", ".toml"]
|
watch_exts = [".go", ".ini", ".toml"]
|
||||||
build_delay = 1500
|
build_delay = 1500
|
||||||
cmds = [
|
cmds = [
|
||||||
["go", "build", "-o", "./bin/grafana-server", "./pkg/cmd/grafana-server"],
|
["go", "run", "build.go", "build"],
|
||||||
["./bin/grafana-server", "cfg:app_mode=development"]
|
["./bin/grafana-server", "cfg:app_mode=development"]
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue