Skip to content

Commit f7afc6a

Browse files
authored
Merge pull request #619 from cmaureir/fix-spell-dict
Arreglar la union de diccionarios
2 parents efae240 + cb9a7c9 commit f7afc6a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ progress: venv
8989

9090
.PHONY: spell
9191
spell: venv
92-
cat dict dictionaries/*.txt > dict.txt
92+
# 'cat' tenia el problema que algunos archivos no tenían una nueva línea al final
93+
# 'awk 1' agregará una nueva línea en caso que falte.
94+
awk 1 dict dictionaries/*.txt > dict.txt
9395
$(VENV)/bin/pospell -p dict.txt -l es_ES **/*.po
9496

9597

0 commit comments

Comments
 (0)