1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-26 03:01:42 +00:00
Files
.github
DOCKER
benchmarks
blockchain
cmd
config
consensus
docs
mempool
node
p2p
proxy
rpc
scripts
debora
glide
checkout.sh
parse.sh
status.sh
update.sh
tendermint-builder
txs
README.md
dist.sh
dist_build.sh
install_abci_apps.sh
publish.sh
state
test
types
version
.codecov.yml
.editorconfig
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
INSTALL.md
LICENSE
Makefile
README.md
Vagrantfile
circle.yml
glide.lock
glide.yaml
tendermint/scripts/glide/parse.sh

14 lines
213 B
Bash
Raw Normal View History

2016-07-24 14:08:47 -04:00
#! /bin/bash
2016-08-10 01:45:55 -04:00
2016-11-03 20:16:44 -04:00
set +u
2016-10-12 12:27:37 -04:00
if [[ "$GLIDE" == "" ]]; then
GLIDE=$GOPATH/src/github.com/tendermint/tendermint/glide.lock
fi
2016-11-03 20:16:44 -04:00
set -u
2016-07-24 14:08:47 -04:00
2016-12-09 01:28:08 -05:00
set -euo pipefail
LIB=$1
2016-07-24 14:08:47 -04:00
cat $GLIDE | grep -A1 $LIB | grep -v $LIB | awk '{print $2}'