1
0
mirror of https://github.com/ru-de/faq.git synced 2024-09-19 19:41:28 +00:00
faq-de/.travis.sh
Evgeniy Sokolov e7b7090f42 spell-checker
2016-01-19 00:38:49 +01:00

26 lines
625 B
Bash

#!/bin/bash
go build spell-checker.go
EXIT_CODE=0
git diff HEAD^ --name-only > changed_files
while read FILE; do
echo -n "Проверка файла $FILE на опечатки... ";
OUTPUT_RU=$(cat "$FILE" | hunspell -d ru_RU | ./spell-checker);
RU_EXIT_CODE=$?
OUTPUT_EN=$(cat "$FILE" | hunspell -d en_US | ./spell-checker);
EN_EXIT_CODE=$?
if [ $RU_EXIT_CODE -ne 0 ] || [ $EN_EXIT_CODE -ne 0 ]; then
EXIT_CODE=1;
echo "ошибка";
echo "$OUTPUT_RU\n$OUTPUT_EN" | sort -n -k1,4;
else
echo "пройдена";
fi
done < changed_files
exit $EXIT_CODE