Skip to content

Commit 248b2c9

Browse files
committed
Suppress warning about missing sasl
Add `nowarn_sasl` to the rebar.config erl_opts to suppress the warning when assembling the release: ``` *WARNING* Missing application sasl. Can not upgrade with this release ``` This escript tool does not need sasl since we are not doing OTP application style upgrades. We can safely ignore this warning, and it may be confusing or misleading to users. See issue #34. Signed-off-by: Winford <[email protected]>
1 parent cfebac7 commit 248b2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%%
55
%% SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
66

7-
{erl_opts, [debug_info]}.
7+
{erl_opts, [debug_info, nowarn_sasl]}.
88
{deps, []}.
99

1010
{escript_incl_apps, [atomvm_packbeam]}.

0 commit comments

Comments
 (0)