fix(rebar.config.script): do not write rendered rebar.config to file

This commit is contained in:
Zaiming Shi 2020-12-02 20:10:56 +01:00
parent 1b963252cf
commit 41118f5d6b
1 changed files with 1 additions and 1 deletions

View File

@ -14,5 +14,5 @@ CompileOpts = [verbose,report_errors,report_warnings,return_errors,binary],
%% render the rebar.config by evaluating the placeholders:
CONFIG_R = mod_config_template:render(CONFIG),
file:write_file("rebar.config.rendered", [io_lib:format("~p.\n", [I]) || I <- CONFIG_R]),
%file:write_file("rebar.config.rendered", [io_lib:format("~p.\n", [I]) || I <- CONFIG_R]),
CONFIG_R.