[erlang-questions] Rebar to run CT

Tuncer Ayaz tuncer.ayaz@REDACTED
Thu Apr 30 21:40:10 CEST 2015


{erl_opts, [
    debug_info,
    fail_on_warning,
    {parse_transform, lager_transform}
]}.

should be

{erl_opts, [
    warnings_as_errors,
    {parse_transform, lager_transform}
]}.

to use the right compiler flag and omit what's already
enabled by default.



More information about the erlang-questions mailing list