cd into tendermint before calling `dep status`

This commit is contained in:
Anton Kaliaev 2018-02-27 18:47:53 +04:00
parent 0821384ac6
commit 66354de219
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
3 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,9 @@
set -u
function getVendoredVersion() {
cd "$GOPATH/src/github.com/tendermint/tendermint" || exit
dep status | grep "$1" | awk '{print $4}'
cd - || exit
}

View File

@ -1,6 +1,8 @@
#! /bin/bash
set -euo pipefail
cd "$GOPATH/github.com/tendermint/tendermint" || exit
LIB=$1
dep status | grep "$LIB" | awk '{print $4}'

View File

@ -1,13 +1,12 @@
#! /bin/bash
go get -d github.com/tendermint/abci
# get the abci commit used by tendermint
COMMIT=$(bash scripts/dep_utils/parse.sh abci)
echo "Checking out vendored commit for abci: $COMMIT"
go get -d github.com/tendermint/abci
cd "$GOPATH/src/github.com/tendermint/abci" || exit
git checkout "$COMMIT"
make get_tools
make get_vendor_deps
make install