diff --git a/scripts/install_tmsp_apps.sh b/scripts/install_tmsp_apps.sh index 6abe4da09..d19edc9b4 100644 --- a/scripts/install_tmsp_apps.sh +++ b/scripts/install_tmsp_apps.sh @@ -3,10 +3,11 @@ go get github.com/tendermint/tmsp/... # get the tmsp commit used by tendermint -COMMIT=`bash scripts/glide/parse.sh $(pwd)/glide.lock tmsp` +COMMIT=`bash scripts/glide/parse.sh tmsp` + +echo "Checking out vendored commit for tmsp: $COMMIT" cd $GOPATH/src/github.com/tendermint/tmsp git checkout $COMMIT +glide install go install ./cmd/... - -