diff options
author | w0rp <devw0rp@gmail.com> | 2017-06-29 12:55:00 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-06-29 12:55:00 +0100 |
commit | 411c6b5e9f8ecf367aaf487adf4e380251c44fa1 (patch) | |
tree | ffad46cdc3181a18eeafff8db4c1fa8cbf0bd369 /run-tests | |
parent | 518f99b480d02a444ad44f8bc109cdf593f3f86b (diff) | |
download | ale-411c6b5e9f8ecf367aaf487adf4e380251c44fa1.zip |
Fix #707 - Fix some duplicate tags, and add some code to check for them
Diffstat (limited to 'run-tests')
-rwxr-xr-x | run-tests | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -194,6 +194,14 @@ if ((run_custom_checks)); then docker run -a stdout "${DOCKER_FLAGS[@]}" ./custom-checks . || EXIT=$? set +o pipefail echo + + echo '========================================' + echo 'Checking for duplicate tags' + echo '========================================' + echo 'Duplicate tags follow:' + echo + + grep --exclude=tags -roh '\*.*\*$' doc | sort | uniq -d || EXIT=$? fi exit $EXIT |