diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-09-26 09:22:25 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-09-26 09:22:25 -0500 |
commit | 3f9ff5a30221919b1ce4f65bbefcebe360c09ecb (patch) | |
tree | abf0f28ccfaf9141bbdb3796d23e7267d8be86b2 /src/rebar_topo.erl | |
parent | e392bfaec3942e63a88bb86a676fe4755ba84ce3 (diff) |
fix compilation order
Diffstat (limited to 'src/rebar_topo.erl')
-rw-r--r-- | src/rebar_topo.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_topo.erl b/src/rebar_topo.erl index 5f528af..9ab4c28 100644 --- a/src/rebar_topo.erl +++ b/src/rebar_topo.erl @@ -103,7 +103,7 @@ apps_to_pairs(Apps) -> -spec app_to_pairs(rebar_app_info:t()) -> [pair()]. app_to_pairs(App) -> - [{DepApp, rebar_app_info:name(App)} || + [{ec_cnv:to_binary(DepApp), rebar_app_info:name(App)} || DepApp <- rebar_app_info:deps(App)]. |