Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ progress: venv

.PHONY: spell
spell: venv
cat dict dictionaries/*.txt > dict.txt
# 'cat' tenia el problema que algunos archivos no tenían una nueva línea al final
# 'awk 1' agregará una nueva línea en caso que falte.
awk 1 dict dictionaries/*.txt > dict.txt
Comment thread
cmaureir marked this conversation as resolved.
$(VENV)/bin/pospell -p dict.txt -l es_ES **/*.po


Expand Down