Build: make bra a local dependency (#17414)

Same idea as with the `gosec`, `revive` and etc.
Allows you to execute `make bra` as pinned local dependency instead
as global one. And therefore alleviates dependency installation issues.

README also updated - I was thinking to provide verbose installation instructions
for it. Since with that way we assume make is installed on the
developer system.

But it might be premature right now?
This commit is contained in:
Oleg Gaidarenko
2019-06-07 16:42:08 +03:00
committed by GitHub
parent 2316414786
commit bc7c420ee8
5 changed files with 82 additions and 32 deletions
+7 -2
View File
@@ -3,6 +3,11 @@ module github.com/grafana/grafana/scripts/go
go 1.12
require (
github.com/mgechev/revive v0.0.0-20190505013521-22b849f28677 // indirect
github.com/securego/gosec v0.0.0-20190510081509-ee80733faf72 // indirect
github.com/Unknwon/bra v0.0.0-20181014071252-e3d443382332
github.com/Unknwon/com v0.0.0-20190321035513-0fed4efef755 // indirect
github.com/Unknwon/log v0.0.0-20150304194804-e617c87089d3 // indirect
github.com/mgechev/revive v0.0.0-20190505013521-22b849f28677
github.com/securego/gosec v0.0.0-20190510081509-ee80733faf72
github.com/urfave/cli v1.20.0 // indirect
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
)