update glide

This commit is contained in:
Ethan Buchman
2016-11-03 20:16:44 -04:00
parent 3ff9355e7b
commit 01a3ac50af
3 changed files with 5 additions and 1 deletions

2
glide.lock generated
View File

@ -88,7 +88,7 @@ imports:
subpackages: subpackages:
- term - term
- name: github.com/tendermint/tmsp - name: github.com/tendermint/tmsp
version: 940f46278380a8a76da310ec05e925ff05a42635 version: 1201837ec13fc8b1b215434128a2426dfe0c9cd9
subpackages: subpackages:
- client - client
- example/counter - example/counter

View File

@ -3,8 +3,10 @@ set -euo pipefail
LIB=$1 LIB=$1
set +u
if [[ "$GLIDE" == "" ]]; then if [[ "$GLIDE" == "" ]]; then
GLIDE=$GOPATH/src/github.com/tendermint/tendermint/glide.lock GLIDE=$GOPATH/src/github.com/tendermint/tendermint/glide.lock
fi fi
set -u
cat $GLIDE | grep -A1 $LIB | grep -v $LIB | awk '{print $2}' cat $GLIDE | grep -A1 $LIB | grep -v $LIB | awk '{print $2}'

View File

@ -7,9 +7,11 @@ IFS=$'\n\t'
LIB=$1 LIB=$1
TMCORE=$GOPATH/src/github.com/tendermint/tendermint TMCORE=$GOPATH/src/github.com/tendermint/tendermint
set +u
if [[ "$GLIDE" == "" ]]; then if [[ "$GLIDE" == "" ]]; then
GLIDE=$TMCORE/glide.lock GLIDE=$TMCORE/glide.lock
fi fi
set -u
OLD_COMMIT=`bash $TMCORE/scripts/glide/parse.sh $LIB` OLD_COMMIT=`bash $TMCORE/scripts/glide/parse.sh $LIB`