From 29d2db352ec89a8af626bd98e9cbceaabb4df2d7 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Tue, 4 Sep 2018 23:20:45 +0400 Subject: [PATCH] update outdated abci-cli install instructions (#2325) https://github.com/tendermint/tendermint/pull/2301 --- abci/README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/abci/README.md b/abci/README.md index 493d862f..c536a3bd 100644 --- a/abci/README.md +++ b/abci/README.md @@ -24,7 +24,7 @@ For more background information on ABCI, motivations, and tendermint, please vis The two guides to focus on are the `Application Development Guide` and `Using ABCI-CLI`. -## Protocl Buffers +## Protocol Buffers To compile the protobuf file, run: @@ -42,10 +42,13 @@ The `abci-cli` is a simple tool for debugging ABCI servers and running some example apps. To install it: ``` -go get github.com/tendermint/abci -cd $GOPATH/src/github.com/tendermint/abci +mkdir -p $GOPATH/src/github.com/tendermint +cd $GOPATH/src/github.com/tendermint +git clone https://github.com/tendermint/tendermint.git +cd tendermint +make get_tools make get_vendor_deps -make install +make install_abci ``` ## Implementation