diff options
author | EuAndreh <eu@euandre.org> | 2020-10-14 00:23:27 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-10-14 00:23:27 -0300 |
commit | 3510f642c46a52c94d34ef7ad8bb2d53bc72a03f (patch) | |
tree | 2ea22ff4cad8adb888bd6824bd6498e5dc2f908a | |
parent | feature flag article+slides: Timestamp them with 2020/10/14 (diff) | |
download | euandre.org-3510f642c46a52c94d34ef7ad8bb2d53bc72a03f.tar.gz euandre.org-3510f642c46a52c94d34ef7ad8bb2d53bc72a03f.tar.xz |
assert-spelling.sh: Actually show unique mispelled entries
Diffstat (limited to '')
-rwxr-xr-x | scripts/assert-spelling.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/assert-spelling.sh b/scripts/assert-spelling.sh index edc56dd..bf1a350 100755 --- a/scripts/assert-spelling.sh +++ b/scripts/assert-spelling.sh @@ -25,7 +25,7 @@ done if [[ -s "$OUT" ]]; then printf "\nvvv Mispelled words detected by hunspell.\n\n" - sort < "$OUT" | uniq + cut -d\ -f2- < "$OUT" | sort | uniq printf "\n^^^\n" >&2 exit 1 else |