mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
9 lines
287 B
Bash
9 lines
287 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
diff -u <(egrep 'sudo apt-get install .*git' README.md) \
|
||
|
<(egrep 'sudo apt-get install .*git' doc/INSTALL.md)
|
||
|
if [[ $? != 0 ]]; then
|
||
|
echo "Dependencies listed in README.md are not identical to those listed in doc/INSTALL.md (see above). Please fix."
|
||
|
exit 1
|
||
|
fi
|