diff options
Diffstat (limited to 'spelling/check-spelling.sh')
-rwxr-xr-x | spelling/check-spelling.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spelling/check-spelling.sh b/spelling/check-spelling.sh index 4e674bb..b3bb15f 100755 --- a/spelling/check-spelling.sh +++ b/spelling/check-spelling.sh @@ -28,8 +28,9 @@ export -f check find "${HTML_DIR}" -type f -name '*.html' -print0 | xargs -0 -I{} bash -c "check {}" \; if [[ -s spelling.txt ]]; then - echo "Mispelled words detected by hunspell." + printf "\nvvv Mispelled words detected by hunspell.\n\n" cat spelling.txt + printf "\n^^^\n" exit 1 else echo "No words mispelled" |