1

First time trying out exrm. Build failing because unreachable_package. Can't seem to find what package is the issue. Any insight into where I should be looking would be much appreciated.

===> Provider successfully run: app_discover
===> Running provider resolve_release
===> Solving Release telnet_client-0.0.1
===> Provider (resolve_release) failed with: {error,
                                                 {rlx_prv_release,
                                                  {failed_solve,
                                                   {unreachable_package,
                                                    telnet_client}}}}
==> Failed to build release. Please fix any errors and try again.
davidj
  • 80
  • 4
  • Details, details, details! Which version of EXRM? Which version of Elixir? Which version of Erlang? Which OS? I know you answered your question yourself below but if anyone else runs into a similar issue I'm sure they'd like to know if the details are the same or not. – Onorio Catenacci Feb 12 '16 at 13:29
  • Seems related to this: https://github.com/bitwalker/exrm/issues/269 – momo May 06 '16 at 02:48

1 Answers1

0

Removing the build_path and config_path seems to have done the trick.

 build_path: "../../_build",
 config_path: "../../config/config.exs",
davidj
  • 80
  • 4
  • 1
    Seems like it is trying to use telnet, but it's failing to either get/download a dependency or using a telnet client it expects to be available in the system. Are you on Windows? Are those paths you removed from your project or from exrm? – Sasha Fonseca Feb 12 '16 at 12:11