I'm trying to use Rambo from a CLI tool built using MIX_ENV=prod mix escript.build.
The problem I am having is an error thrown from inside Rambo, see: https://gist.github.com/mmower/caea6d7b0f669a24f4f8ac01c8609a53
Note that the code works fine when run interactively via IEx.
Digging in a little the error seems to arise from:
def find_rambo do
Path.join(:code.priv_dir(:rambo), @filename)
end
There's a whole load of stuff going on in compile_rambo.ex that I don't understand, but it looks like it builds the shim binary Rambo uses for handling input termination. Based on what I read I think the problem may be that the :priv folder isn't included in escript builds.
Anyway, something about this isn't seeming very happy in the escript context.
Can you help me, please?
Matt
I'm trying to use Rambo from a CLI tool built using
MIX_ENV=prod mix escript.build.The problem I am having is an error thrown from inside Rambo, see: https://gist.github.com/mmower/caea6d7b0f669a24f4f8ac01c8609a53
Note that the code works fine when run interactively via IEx.
Digging in a little the error seems to arise from:
There's a whole load of stuff going on in
compile_rambo.exthat I don't understand, but it looks like it builds the shim binary Rambo uses for handling input termination. Based on what I read I think the problem may be that the:privfolder isn't included in escript builds.Anyway, something about this isn't seeming very happy in the escript context.
Can you help me, please?
Matt