Skip to content

Commit

Permalink
Fix missing kernel, stdlib application warning
Browse files Browse the repository at this point in the history
This fixes the following warning when building websocket_client:

```
===> Compiling websocket_client
===> "deps/websocket_client/ebin/websocket_client.app" is missing kernel from applications list
===> "deps/websocket_client/ebin/websocket_client.app" is missing stdlib from applications list
```
  • Loading branch information
fhunleth committed Apr 28, 2020
1 parent 92b0fd9 commit 2cb7622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/websocket_client.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[{description,"Erlang websocket client"},
{vsn,"1.4.0"},
{registered,[]},
{applications,[ssl,crypto,inets]},
{applications,[kernel,stdlib,ssl,crypto,inets]},
{env,[]},
{modules,[]},
{licenses,["MIT"]}]}.

0 comments on commit 2cb7622

Please sign in to comment.