Closed sunboshan closed 5 years ago
Sorry for the late reply!
As your issue for Elixir itself has been classified as a real bug (as far as I can see it should have even received a fix by now?) it might be best to slightly circumvent this problem for now.
With a new application it looked like adding :mmdb2_decoder
to either :extra_applications
or :applications
in your own mix.exs
seems to build a working release. Once Elixir has received a 1.9.1
release it should work as expected :thinking:
The recently released Elixir 1.9.1 seems to completely fix this problem :heart: :green_heart: :blue_heart: :yellow_heart: :purple_heart:
In elixir 1.9, it added
mix release
task to build a release without using distillery.However it doesn't work with
geolix
lib, since in the mix.exs,The
included_application
part will makemix release
complain.The solution is to move the
mmdb2_decoder
to applications would work.