ditch glide

This commit is contained in:
Anton Kaliaev
2018-02-27 17:20:56 +04:00
parent 93732b4c1e
commit 8dd06cf197
15 changed files with 69 additions and 419 deletions

View File

@@ -0,0 +1,25 @@
#! /bin/bash
set -u
function getVendoredVersion() {
dep status | grep "$1" | awk '{print $4}'
}
# fetch and checkout vendored dep
lib=$1
echo "----------------------------------"
echo "Getting $lib ..."
go get -t "github.com/tendermint/$lib/..."
VENDORED=$(getVendoredVersion "$lib")
cd "$GOPATH/src/github.com/tendermint/$lib" || exit
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

View File

@@ -0,0 +1,6 @@
#! /bin/bash
set -euo pipefail
LIB=$1
dep status | grep "$LIB" | awk '{print $4}'