Chore: Prevent `make run` from printing all environment variables (#101924)

pull/100569/head
Sven Grossmann 4 months ago committed by GitHub
parent 270700c890
commit 2d71c8ae72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      .bra.toml

@ -1,6 +1,6 @@
[run]
init_cmds = [
["GO_BUILD_DEV=1", "make", "build-go"],
["make","GO_BUILD_DEV=1", "build-go"],
["make", "gen-jsonnet"],
["./bin/grafana", "server", "-profile", "-profile-addr=127.0.0.1", "-profile-port=6000", "-profile-block-rate=1", "-profile-mutex-rate=5", "-packaging=dev", "cfg:app_mode=development"]
]
@ -17,7 +17,7 @@ watch_exts = [".go", ".ini", ".toml", ".template.html"]
ignore_files = [".*_gen.go"]
build_delay = 1500
cmds = [
["GO_BUILD_DEV=1", "make", "build-go-fast"],
["make", "GO_BUILD_DEV=1", "build-go-fast"],
["make", "gen-jsonnet"],
["./bin/grafana", "server", "-profile", "-profile-addr=127.0.0.1", "-profile-port=6000", "-profile-block-rate=1", "-profile-mutex-rate=5", "-packaging=dev", "cfg:app_mode=development"]
]

Loading…
Cancel
Save