summaryrefslogtreecommitdiff
path: root/src/rebar_topo.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-11-01 14:58:00 -0500
committerTristan Sloughter <t@crashfast.com>2014-11-01 14:58:00 -0500
commitfd59279edc07bbfa30ee76d6d00c2731ebb0a573 (patch)
tree5c967c80343d952766355af24cdfab4fb6f684ed /src/rebar_topo.erl
parent35d1afd2f69aa604ec1a44ac511092dc5a40e12c (diff)
don't return {error, {error, iolist()}} from rbear_topo
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 de3351a..d9f426d 100644
--- a/src/rebar_topo.erl
+++ b/src/rebar_topo.erl
@@ -61,7 +61,7 @@ sort_apps(Apps) ->
{ok, Names} ->
{ok, names_to_apps(Names, Apps)};
E ->
- {error, E}
+ E
end.
%% @doc Do a topological sort on the list of pairs.