mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
5b7fcab766
Not sure how this got through Travis. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
8 lines
279 B
Bash
Executable File
8 lines
279 B
Bash
Executable File
#!/bin/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
|