You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
318 B

8 years ago
6 years ago
8 years ago
6 years ago
6 years ago
  1. #! /bin/bash
  2. # get the abci commit used by tendermint
  3. COMMIT=$(bash scripts/dep_utils/parse.sh abci)
  4. echo "Checking out vendored commit for abci: $COMMIT"
  5. go get -d github.com/tendermint/abci
  6. cd "$GOPATH/src/github.com/tendermint/abci" || exit
  7. git checkout "$COMMIT"
  8. make get_tools
  9. make get_vendor_deps
  10. make install