-
Piotr Gawron authoredPiotr Gawron authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
test_spelling.sh 607 B
#!/bin/bash
result=0
while read filename
do
html=''
case $filename in *.html)
html=" --mode html ";;
esac
lines=`cat $filename | aspell $html --lang=en --encoding=utf-8 --add-extra-dicts=./.aspell.en.pws --add-extra-dicts=./.aspell-api-exceptions.pws list|wc -l`
if [ $lines -ne 0 ]
then
echo "[$filename] Unknown words:"
echo
cat $filename | aspell --lang=en $html --encoding=utf-8 --add-extra-dicts=./.aspell.en.pws --add-extra-dicts=./.aspell-api-exceptions.pws list |sort |uniq
result=1
fi
done <<< "$(ls web/target/generated-docs/*.html CHANGELOG -c1)"
exit $result