mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
14 lines
290 B
Bash
14 lines
290 B
Bash
#! /bin/bash
|
|
|
|
go get github.com/tendermint/abci/...
|
|
|
|
# get the abci commit used by tendermint
|
|
COMMIT=`bash scripts/glide/parse.sh abci`
|
|
|
|
echo "Checking out vendored commit for abci: $COMMIT"
|
|
|
|
cd $GOPATH/src/github.com/tendermint/abci
|
|
git checkout $COMMIT
|
|
glide install
|
|
go install ./cmd/...
|