update outdated abci-cli install instructions (#2325)

https://github.com/tendermint/tendermint/pull/2301
This commit is contained in:
Anton Kaliaev 2018-09-04 23:20:45 +04:00 committed by GitHub
parent eabb1ece8e
commit 29d2db352e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

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