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.

13 lines
289 B

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