rebar.config includes:
{shell, [
{config, "./shell.config"},
{apps, [...]}
]}.
shell.config includes:
[{kernel, [{shell_history, enabled}]}].
When I run rebar3 shell, shell history is not restored from the previous session.
This will work:
export ERL_AFLAGS="-config ./shell.config"
rebar3 shell
As long as I have the environment variable set, I can run the rebar3 shell command many times and the history is always restored.
Is this an issue with rebar3?
rebar.configincludes:{shell, [ {config, "./shell.config"}, {apps, [...]} ]}.shell.configincludes:[{kernel, [{shell_history, enabled}]}].When I run
rebar3 shell, shell history is not restored from the previous session.This will work:
As long as I have the environment variable set, I can run the
rebar3 shellcommand many times and the history is always restored.Is this an issue with
rebar3?