2016-07-24 14:08:47 -04:00
|
|
|
#! /bin/bash
|
|
|
|
|
2017-01-12 15:53:32 -05:00
|
|
|
go get github.com/tendermint/abci/...
|
2016-07-24 14:08:47 -04:00
|
|
|
|
2017-01-12 15:53:32 -05:00
|
|
|
# get the abci commit used by tendermint
|
|
|
|
COMMIT=`bash scripts/glide/parse.sh abci`
|
2016-11-15 18:05:38 -05:00
|
|
|
|
2017-01-12 15:53:32 -05:00
|
|
|
echo "Checking out vendored commit for abci: $COMMIT"
|
2016-07-24 14:08:47 -04:00
|
|
|
|
2017-01-12 15:53:32 -05:00
|
|
|
cd $GOPATH/src/github.com/tendermint/abci
|
2016-07-24 14:08:47 -04:00
|
|
|
git checkout $COMMIT
|
2016-11-15 18:05:38 -05:00
|
|
|
glide install
|
2016-07-24 14:08:47 -04:00
|
|
|
go install ./cmd/...
|