From 17ab868af55ca6ac537c41b948333d73a75c0742 Mon Sep 17 00:00:00 2001 From: Adrian Brink Date: Fri, 1 Jun 2018 22:50:41 -0700 Subject: [PATCH] Correct graphviz command in Makefile --- .gitignore | 5 ++++- Makefile | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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 ########################################