From 0b098a2eeef7e902fc6281a9bb0e7f0e7c9f57b3 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 15 Nov 2016 18:05:38 -0500 Subject: [PATCH] use glide in install_tmsp_apps.sh --- scripts/install_tmsp_apps.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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/... - -