mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
12 lines
259 B
Bash
12 lines
259 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for proto in $(find . -name "*.proto"); do
|
||
|
for rpc in $(awk '/ rpc /{print $2}' "$proto"); do
|
||
|
yaml=${proto%%.proto}.yaml
|
||
|
if ! grep -q "$rpc" "$yaml"; then
|
||
|
echo "RPC $rpc not added to $yaml file"
|
||
|
exit 1
|
||
|
fi
|
||
|
done
|
||
|
done
|