Open
Description
When I run
mix gettext.extract --merge
on my umrella project, I get a LOT of warnings saying:
warning: redefining module Core.Reports.ReportThree.Report (current version loaded from /_build/dev/lib/core/ebin/Elixir.Core.Reports.ReportThree.Report.beam)
lib/core/reports/report_three.ex:24
Even if I delete _build
- I think this is also causing this issue, on all of my POT & PO files, I get
#: lib/core/reports/report_three.ex:170
#: lib/core/reports/report_three.ex:170
#, elixir-autogen, elixir-format
msgid "Error"
msgstr "Error"
Which I assume is caused by the module being in memory twice or something, duplicating the reference.
I now just uniq
the generated PO and POT files as a workaround, but I'd rather understand what the core issue is here.