summaryrefslogtreecommitdiff
path: root/src/rebar_topo.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-09-26 09:22:25 -0500
committerTristan Sloughter <t@crashfast.com>2014-09-26 09:22:25 -0500
commit3f9ff5a30221919b1ce4f65bbefcebe360c09ecb (patch)
treeabf0f28ccfaf9141bbdb3796d23e7267d8be86b2 /src/rebar_topo.erl
parente392bfaec3942e63a88bb86a676fe4755ba84ce3 (diff)
fix compilation order
Diffstat (limited to 'src/rebar_topo.erl')
-rw-r--r--src/rebar_topo.erl2
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)].