Correct graphviz command in Makefile
This commit is contained in:
parent
af1ab47b20
commit
17ab868af5
|
@ -19,8 +19,11 @@ baseapp/data/*
|
|||
coverage.txt
|
||||
profile.out
|
||||
|
||||
### Vagrant ###
|
||||
# Vagrant
|
||||
.vagrant/
|
||||
*.box
|
||||
*.log
|
||||
vagrant
|
||||
|
||||
# Graphviz
|
||||
dependency-graph.png
|
2
Makefile
2
Makefile
|
@ -70,7 +70,7 @@ get_vendor_deps:
|
|||
draw_deps:
|
||||
@# requires brew install graphviz or apt-get install graphviz
|
||||
go get github.com/RobotsAndPencils/goviz
|
||||
@goviz -i github.com/tendermint/tendermint/cmd/tendermint -d 3 | dot -Tpng -o dependency-graph.png
|
||||
@goviz -i github.com/cosmos/cosmos-sdk/cmd/gaia/cmd/gaiad -d 2 | dot -Tpng -o dependency-graph.png
|
||||
|
||||
|
||||
########################################
|
||||
|
|
Loading…
Reference in New Issue