mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-04 09:01:19 +00:00
15 lines
240 B
Bash
15 lines
240 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
set +u
|
||
|
if [[ "$DEP" == "" ]]; then
|
||
|
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
|
||
|
fi
|
||
|
set -u
|
||
|
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
LIB=$1
|
||
|
|
||
|
grep -A100 "$LIB" "$DEP" | grep revision | head -n1 | grep -o '"[^"]\+"' | cut -d '"' -f 2
|