tendermint/scripts/install_abci_apps.sh

14 lines
289 B
Bash
Raw Normal View History

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