mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
28 lines
557 B
Bash
28 lines
557 B
Bash
|
#! /bin/bash
|
||
|
set -u
|
||
|
|
||
|
function parseGlide() {
|
||
|
cat $1 | grep -A1 $2 | grep -v $2 | awk '{print $2}'
|
||
|
}
|
||
|
|
||
|
|
||
|
# fetch and checkout vendored dep
|
||
|
|
||
|
glide=$1
|
||
|
lib=$2
|
||
|
|
||
|
echo "----------------------------------"
|
||
|
echo "Getting $lib ..."
|
||
|
go get -t github.com/tendermint/$lib/...
|
||
|
|
||
|
VENDORED=$(parseGlide $glide $lib)
|
||
|
cd $GOPATH/src/github.com/tendermint/$lib
|
||
|
MASTER=$(git rev-parse origin/master)
|
||
|
|
||
|
if [[ "$VENDORED" != "$MASTER" ]]; then
|
||
|
echo "... VENDORED != MASTER ($VENDORED != $MASTER)"
|
||
|
echo "... Checking out commit $VENDORED"
|
||
|
git checkout $VENDORED &> /dev/null
|
||
|
fi
|
||
|
|