Skip to content

Commit

Permalink
Should be optional not included applications
Browse files Browse the repository at this point in the history
To satisfy dialyzer in OTP 26, included_applications was used in b8fbcd2

However, this should be optional_applications as these appas will not necessarily be started
  • Loading branch information
martinsumner committed Dec 8, 2024
1 parent b1cd6ca commit 26ec7d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sidejob.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
{registered, []},
{applications, [
kernel,
stdlib
stdlib,
syntax_tools,
compiler
]},
{included_applications, [syntax_tools, compiler]},
{optional_applications, [syntax_tools, compiler]},
{registered, []},
{mod, {sidejob_app, []}},
{env, []}
Expand Down

0 comments on commit 26ec7d6

Please sign in to comment.