aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-10-14 00:23:27 -0300
committerEuAndreh <eu@euandre.org>2020-10-14 00:23:27 -0300
commit3510f642c46a52c94d34ef7ad8bb2d53bc72a03f (patch)
tree2ea22ff4cad8adb888bd6824bd6498e5dc2f908a
parentfeature flag article+slides: Timestamp them with 2020/10/14 (diff)
downloadeuandre.org-3510f642c46a52c94d34ef7ad8bb2d53bc72a03f.tar.gz
euandre.org-3510f642c46a52c94d34ef7ad8bb2d53bc72a03f.tar.xz
assert-spelling.sh: Actually show unique mispelled entries
Diffstat (limited to '')
-rwxr-xr-xscripts/assert-spelling.sh2
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