mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 07:12:16 +00:00
12 lines
200 B
Bash
12 lines
200 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
go get github.com/tendermint/tmsp/...
|
||
|
|
||
|
COMMIT=`bash scripts/glide/parse.sh $(pwd)/glide.lock tmsp`
|
||
|
|
||
|
cd $GOPATH/src/github.com/tendermint/tmsp
|
||
|
git checkout $COMMIT
|
||
|
go install ./cmd/...
|
||
|
|
||
|
|