I have a rebar3 project. In this project, the supervisor should spawn a bunch of Erlang nodes across multiple machines. I found that the nodes were never getting brought up because of an error in the log:
sh: no such file or directory h/mberns01/..../prod
Where only the leading slash of the path is missing and the rest of the command is correct.
Where in this project is this command generated and why might it be missing the leading slash? I'm not even sure what other information I can provide here to be helpful -- let me know.
Cheers.
EDIT: So it looks like init:get_argument(progname)
returns the wrong program (no leading /
). Not sure why...