Browse Source
Not sure how this got through Travis. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>ppa-0.6.1
Rusty Russell
7 years ago
committed by
Christian Decker
3 changed files with 6 additions and 8 deletions
@ -1,8 +1,7 @@ |
|||
#!/bin/bash |
|||
|
|||
diff -u <(egrep 'sudo apt-get install .*git' README.md) \ |
|||
<(egrep 'sudo apt-get install .*git' doc/INSTALL.md) |
|||
if [[ $? != 0 ]]; then |
|||
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 |
|||
|
Loading…
Reference in new issue