Skip to content

Commit

Permalink
Merge pull request esl#10 from jlouis/jlouis-fix-startup-order
Browse files Browse the repository at this point in the history
Fix the startup order of public_key
  • Loading branch information
gleber committed Jun 4, 2012
2 parents f573bdd + 9970fd7 commit a6fe8c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/erlcloud.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
{applications, [stdlib,
kernel,
sasl,
public_key,
crypto,
public_key,
ssl,
xmerl,
inets]},
Expand Down
2 changes: 1 addition & 1 deletion src/erlcloud.erl
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
start() ->
application:load(?APP),
{ok, Apps} = application:get_key(?APP, applications),
lists:foreach(fun application:start/1, Apps),
[application:start(App) || App <- Apps],
application:start(?APP).

0 comments on commit a6fe8c2

Please sign in to comment.