You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a workaround, using the latest rebar3, you can use:
{overrides, [
%% For all apps:
{del, [{erl_opts, [warning_as_errors]}]},
%% Or for just one app:
{del, one_app, [{erl_opts, [warning_as_errors]}]}
]}.
to work around it if using this app as a dependency.
The correct override is as follows:
{overrides, [
%% For all apps:
{del, [{erl_opts, [warnings_as_errors]}]},
%% Or for just one app:
{del, one_app, [{erl_opts, [warnings_as_errors]}]}
]}.
Basically, s/warning/warnings/ ... This tripped me up.
Since
ssl:ssl_accept
is deprecated chatterbox cannot be compiled as a dependency because of this.https://github.com/joedevivo/chatterbox/blob/master/rebar.config#L5
It would be a good idea to either remove this compile option or use
ssl:ssl_handshake
(I don't know how difficult it is).The text was updated successfully, but these errors were encountered: