Correct graphviz command in Makefile

This commit is contained in:
Adrian Brink 2018-06-01 22:50:41 -07:00
parent af1ab47b20
commit 17ab868af5
2 changed files with 5 additions and 2 deletions

5
.gitignore vendored
View File

@ -19,8 +19,11 @@ baseapp/data/*
coverage.txt
profile.out
### Vagrant ###
# Vagrant
.vagrant/
*.box
*.log
vagrant
# Graphviz
dependency-graph.png

View File

@ -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
########################################