summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorByaruhanga Franklin <byaruhaf@rovcos.com>2015-10-13 04:59:55 +0300
committerByaruhanga Franklin <byaruhaf@rovcos.com>2015-10-13 04:59:55 +0300
commitd63d285e8b924803d691ce1da5379cda53075fa2 (patch)
treed83e9d66eb1153bdd0cec7f35b11b10ffe073f3f /src
parentaff273316da2822d589faf202598f9f282bf6f32 (diff)
removing the /utf8 flag and using the the exact utf-8 value in bytes
removing the /utf8 flag and using the the exact utf-8 value in bytes to make it compatible with compilers <17
Diffstat (limited to 'src')
-rw-r--r--src/rebar_prv_deps_tree.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rebar_prv_deps_tree.erl b/src/rebar_prv_deps_tree.erl
index 07c25ea..b8b5094 100644
--- a/src/rebar_prv_deps_tree.erl
+++ b/src/rebar_prv_deps_tree.erl
@@ -66,13 +66,13 @@ print_children(_, [], _, _) ->
print_children(Prefix, [{Name, Vsn, Source} | Rest], Dict, Verbose) ->
Prefix1 = case Rest of
[] ->
- io:format("~ts~ts", [Prefix, <<"└─ "/utf8>>]),
+ io:format("~ts~ts", [Prefix, <<226,148,148,226,148,128,32>>]),
[Prefix, " "];
_ ->
- io:format("~ts~ts", [Prefix, <<"├─ "/utf8>>]),
+ io:format("~ts~ts", [Prefix, <<226,148,156,226,148,128,32>>]),
[Prefix, "│ "]
end,
- io:format("~ts~ts~ts (~ts)~n", [Name, <<"─"/utf8>>, Vsn, type(Source, Verbose)]),
+ io:format("~ts~ts~ts (~ts)~n", [Name, <<226,148,128>>, Vsn, type(Source, Verbose)]),
case dict:find(Name, Dict) of
{ok, Children} ->
print_children(Prefix1, lists:keysort(1, Children), Dict, Verbose),