diff options
author | EuAndreh <eu@euandre.org> | 2019-06-02 18:08:07 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-02 18:11:09 -0300 |
commit | 1fdd426f44e34ae8c4832f78f676bd05c4f27eda (patch) | |
tree | 5aa64e34541bc2a6104a3ddaed8da3e2623f4b73 /spelling/check-spelling.sh | |
parent | Use GPLv3 or later in footer (diff) | |
download | euandre.org-1fdd426f44e34ae8c4832f78f676bd05c4f27eda.tar.gz euandre.org-1fdd426f44e34ae8c4832f78f676bd05c4f27eda.tar.xz |
Add stateless workstation post
Diffstat (limited to '')
-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" |