From a908eed7a1206bbf94b61a14f61617e4d586cc69 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 13 Oct 2021 22:44:13 +0200 Subject: [PATCH] remove src-folder before pybabel extract (#1390) --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 9a19564ed..e75308d36 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,9 @@ messages.po: inx sed -i 's/charset=CHARSET/charset=UTF-8/g' messages-inx.po bin/pyembroidery-gettext > pyembroidery-format-descriptions.py bin/inkstitch-fonts-gettext > inkstitch-fonts-metadata.py + # After the inx files are finished building, we don't need the src/ folder anymore. + # We don't want babel to grab possible translation strings from that folder, so let's remove it + rm -rf src/ pybabel extract -o messages-babel.po -F babel.conf --add-location=full --add-comments=l10n,L10n,L10N --sort-by-file --strip-comments -k N_ -k '$$gettext' . rm pyembroidery-format-descriptions.py inkstitch-fonts-metadata.py cd electron && yarn --link-duplicates --pure-lockfile