tendermint/scripts/install_abci_apps.sh

13 lines
318 B
Bash
Raw Normal View History

2016-07-24 14:08:47 -04:00
#! /bin/bash
2017-01-12 15:53:32 -05:00
# get the abci commit used by tendermint
2018-02-27 17:20:56 +04:00
COMMIT=$(bash scripts/dep_utils/parse.sh abci)
2017-01-12 15:53:32 -05:00
echo "Checking out vendored commit for abci: $COMMIT"
2016-07-24 14:08:47 -04:00
go get -d github.com/tendermint/abci
2018-02-27 17:20:56 +04:00
cd "$GOPATH/src/github.com/tendermint/abci" || exit
git checkout "$COMMIT"
make get_tools
2018-02-27 17:20:56 +04:00
make get_vendor_deps
make install