mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
f8fa4213f1
These commands fail on systems that do not have bash under /bin Signed-off-by: William Casarin <jb55@jb55.com>
8 lines
287 B
Bash
Executable File
8 lines
287 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! diff -u <(grep -E 'sudo apt-get install .*git' README.md) \
|
|
<(grep -E 'sudo apt-get install .*git' doc/INSTALL.md); then
|
|
echo "Dependencies listed in README.md are not identical to those listed in doc/INSTALL.md (see above). Please fix."
|
|
exit 1
|
|
fi
|