diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-28 22:05:12 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-28 22:05:12 +0100 |
commit | 8e3c1dbd11bb402f6f5b6254b77eb98c67340119 (patch) | |
tree | 3b637b9f0276d84b7ddc4b9dde9cd59ca68e0e76 /run-tests | |
parent | b031531e79d409af3b143a1f40431cd868cd78fb (diff) | |
download | ale-8e3c1dbd11bb402f6f5b6254b77eb98c67340119.zip |
Fix - #883 Document linting behavior better, sync up the lists of supported tools, andautomatically demand that they stay in sync
Diffstat (limited to 'run-tests')
-rwxr-xr-x | run-tests | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -235,6 +235,14 @@ if ((run_custom_checks)); then <(grep --exclude=tags -roh "\*$tag_regex\*" doc | sort -u | sed 's/*//g') \ <(grep --exclude=tags -roh "|$tag_regex|" doc | sort -u | sed 's/|//g') \ | grep '^+[^+]' && EXIT=1 + + echo '========================================' + echo 'diff README.md and doc/ale.txt tables' + echo '========================================' + echo 'Differences follow:' + echo + + ./check-supported-tools-tables || EXIT=$? fi exit $EXIT |