diff --git a/.gitignore b/.gitignore index b0684f2070..494e724528 100644 --- a/.gitignore +++ b/.gitignore @@ -19,8 +19,11 @@ baseapp/data/* coverage.txt profile.out -### Vagrant ### +# Vagrant .vagrant/ *.box *.log vagrant + +# Graphviz +dependency-graph.png \ No newline at end of file diff --git a/Makefile b/Makefile index 7d2d23ad63..f7e2083c76 100644 --- a/Makefile +++ b/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 ########################################