mirror of
https://github.com/ru-de/faq.git
synced 2024-11-22 18:32:19 +00:00
reorganize files
This commit is contained in:
parent
37bed1c536
commit
7b14135587
@ -4,7 +4,7 @@ before_install:
|
||||
- curl -s http://extensions.libreoffice.org/extension-center/russian-spellcheck-dictionary.-based-on-works-of-aot-group | grep -oP "http://extensions.libreoffice.org/extension-center/russian-spellcheck-dictionary.-based-on-works-of-aot-group/pscre[^\"]+" | sort -r | head -1 | wget -q -i - -O dictionary.otx
|
||||
- unzip dictionary.otx
|
||||
script:
|
||||
- sh .travis.sh
|
||||
- sh files/.travis.sh
|
||||
|
||||
notifications:
|
||||
email: false
|
||||
|
@ -1,17 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
go build spell-checker.go
|
||||
|
||||
DIR=`dirname $0`
|
||||
EXIT_CODE=0
|
||||
|
||||
go build -o $DIR/spell-checker $DIR/spell-checker.go
|
||||
exit
|
||||
git diff HEAD^ --name-only > changed_files
|
||||
|
||||
while read FILE; do
|
||||
echo -n "Проверка файла $FILE на опечатки... ";
|
||||
|
||||
OUTPUT_RU=$(cat "$FILE" | hunspell -d ru_RU | ./spell-checker);
|
||||
OUTPUT_RU=$(cat "$FILE" | hunspell -d ru_RU | $DIR/spell-checker);
|
||||
RU_EXIT_CODE=$?
|
||||
OUTPUT_EN=$(cat "$FILE" | hunspell -d en_US | ./spell-checker);
|
||||
OUTPUT_EN=$(cat "$FILE" | hunspell -d en_US | $DIR/spell-checker);
|
||||
EN_EXIT_CODE=$?
|
||||
|
||||
if [ $RU_EXIT_CODE -ne 0 ] || [ $EN_EXIT_CODE -ne 0 ]; then
|
Loading…
Reference in New Issue
Block a user