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 |
#!/bin/bash |
||||
|
|
||||
diff -u <(egrep 'sudo apt-get install .*git' README.md) \ |
if ! diff -u <(grep -E 'sudo apt-get install .*git' README.md) \ |
||||
<(egrep 'sudo apt-get install .*git' doc/INSTALL.md) |
<(grep -E 'sudo apt-get install .*git' doc/INSTALL.md); then |
||||
if [[ $? != 0 ]]; then |
|
||||
echo "Dependencies listed in README.md are not identical to those listed in doc/INSTALL.md (see above). Please fix." |
echo "Dependencies listed in README.md are not identical to those listed in doc/INSTALL.md (see above). Please fix." |
||||
exit 1 |
exit 1 |
||||
fi |
fi |
||||
|
Loading…
Reference in new issue