demo: fix tendermint branch

This commit is contained in:
Ethan Buchman 2017-04-27 05:07:45 -04:00
parent e501a4af62
commit 1a54c6adb6
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ set -e
cd $GOPATH/src/github.com/tendermint/basecoin/demo
LOG_DIR="."
TM_VERSION="v0.9.2"
if [[ "$CIRCLECI" == "true" ]]; then
# set log dir
@ -13,7 +14,7 @@ if [[ "$CIRCLECI" == "true" ]]; then
set +e
go get github.com/tendermint/tendermint
pushd $GOPATH/src/github.com/tendermint/tendermint
git checkout develop
git checkout $TM_VERSION
glide install
go install ./cmd/tendermint
popd