tendermint/scripts/install_tmsp_apps.sh

14 lines
290 B
Bash
Raw Normal View History

2016-07-24 11:08:47 -07:00
#! /bin/bash
go get github.com/tendermint/tmsp/...
# get the tmsp commit used by tendermint
2016-11-15 15:05:38 -08:00
COMMIT=`bash scripts/glide/parse.sh tmsp`
echo "Checking out vendored commit for tmsp: $COMMIT"
2016-07-24 11:08:47 -07:00
cd $GOPATH/src/github.com/tendermint/tmsp
git checkout $COMMIT
2016-11-15 15:05:38 -08:00
glide install
2016-07-24 11:08:47 -07:00
go install ./cmd/...