tendermint/scripts/install_abci_apps.sh

13 lines
318 B
Bash
Raw Normal View History

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