mirror of
https://github.com/ru-de/faq.git
synced 2024-11-23 19:02:19 +00:00
empty json
This commit is contained in:
parent
277c49d34c
commit
619634698e
@ -14,13 +14,13 @@ touch /tmp/comments.json
|
||||
|
||||
while read FILE; do
|
||||
COMMIT=$(git log --pretty=format:"%H" -1 "$FILE");
|
||||
echo -n "Проверка изменений в файле $FILE на опечатки... ";
|
||||
echo "Проверка изменений в файле $FILE на опечатки... ";
|
||||
|
||||
cat "$FILE" | sed 's/https\?:[^ ]*//g' | sed "s/[(][^)]*\.md[)]//g" | sed "s/[(]files[^)]*[)]//g" | hunspell -d dictionary,russian-aot-utf8,ru_RU,de_DE-utf8,en_US-utf8 > /tmp/hunspell.out
|
||||
cat /tmp/hunspell.out | hunspell_parser > /tmp/hunspell_parsed.json
|
||||
/tmp/check_spell -file "$FILE" -commit=$COMMIT -pr-liner /tmp/pr_liner.json -hunspell-parsed-file /tmp/hunspell_parsed.json >> /tmp/comments.json
|
||||
|
||||
echo -n "Проверка изменений в файле $FILE на недоступные ссылки... ";
|
||||
echo "Проверка изменений в файле $FILE на недоступные ссылки... ";
|
||||
|
||||
/tmp/check_links -file "$FILE" -commit=$COMMIT -pr-liner /tmp/pr_liner.json -expected-codes files/expected_codes.csv >> /tmp/comments.json
|
||||
|
||||
|
@ -81,6 +81,7 @@ func main() {
|
||||
|
||||
}
|
||||
|
||||
if len(comments) > 0 {
|
||||
jsonData, err := json.Marshal(comments)
|
||||
|
||||
if err != nil {
|
||||
@ -89,3 +90,4 @@ func main() {
|
||||
|
||||
fmt.Println(string(jsonData))
|
||||
}
|
||||
}
|
||||
|
@ -45,6 +45,7 @@ func main() {
|
||||
})
|
||||
}
|
||||
|
||||
if len(comments) > 0 {
|
||||
jsonData, err := json.Marshal(comments)
|
||||
|
||||
if err != nil {
|
||||
@ -53,3 +54,4 @@ func main() {
|
||||
|
||||
fmt.Println(string(jsonData))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user