Merge pull request #1121 from cosmos/adrian/graphviz

Correct graphviz command in Makefile
This commit is contained in:
Christopher Goes 2018-06-02 21:42:40 +02:00 committed by GitHub
commit d55c86bcce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
########################################