diff options
Diffstat (limited to '')
-rwxr-xr-x | scripts/assert-spelling.sh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/assert-spelling.sh b/scripts/assert-spelling.sh index caaecfa..e7bd3b8 100755 --- a/scripts/assert-spelling.sh +++ b/scripts/assert-spelling.sh @@ -8,7 +8,7 @@ export LANG=C.UTF-8 for DICT in scripts/spelling/*.txt; do diff <(sort "$DICT") "$DICT" || { echo "The $DICT dictionary is unsorted. To fix it, run:" >&2 - echo " LANG=C.UTF-8 sort docs/$DICT | sponge docs/$DICT" >&2 + echo " LANG=C.UTF-8 sort $DICT | sponge $DICT" >&2 exit 1 } done @@ -17,11 +17,9 @@ OUT="$(mktemp)" shopt -s globstar jekyll build for f in _site/**/*.html; do - if ! grep -E '^_site/pastebin' <(echo "$f") > /dev/null; then - if ! grep -E '^_site/vendor/' <(echo "$f") > /dev/null; then - l="$(head -n2 "$f" | tail -n1 | cut -d\" -f2)" - hunspell -u3 -H -d "$l" -p <(cat scripts/spelling/international.txt "scripts/spelling/$l.txt") "$f" | tee -a "$OUT" - fi + if ! grep -E '^_site/vendor/' <(echo "$f") > /dev/null; then + l="$(head -n2 "$f" | tail -n1 | cut -d\" -f2)" + hunspell -u3 -H -d "$l" -p <(cat scripts/spelling/international.txt "scripts/spelling/$l.txt") "$f" | tee -a "$OUT" fi done |