We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efae240 + cb9a7c9 commit f7afc6aCopy full SHA for f7afc6a
1 file changed
Makefile
@@ -89,7 +89,9 @@ progress: venv
89
90
.PHONY: spell
91
spell: venv
92
- cat dict dictionaries/*.txt > dict.txt
+ # '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
95
$(VENV)/bin/pospell -p dict.txt -l es_ES **/*.po
96
97
0 commit comments