mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-27 07:42:14 +00:00
9 lines
164 B
Bash
9 lines
164 B
Bash
#! /bin/bash
|
|
set -euo pipefail
|
|
|
|
LIB=$1
|
|
|
|
GLIDE=$GOPATH/src/github.com/tendermint/tendermint/glide.lock
|
|
|
|
cat $GLIDE | grep -A1 $LIB | grep -v $LIB | awk '{print $2}'
|