mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 15:22:15 +00:00
7 lines
84 B
Bash
7 lines
84 B
Bash
|
#! /bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
LIB=$1
|
||
|
|
||
|
dep status | grep "$LIB" | awk '{print $4}'
|