소스 검색

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
pull/867/head
Byaruhanga Franklin 9 년 전
부모
커밋
d63d285e8b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      src/rebar_prv_deps_tree.erl

+ 3
- 3
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),

불러오는 중...
취소
저장