Procházet zdrojové kódy

Dedup dep list

pull/2124/head
Rob Ashton před 5 roky
rodič
revize
4067a0dd52
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/rebar_compiler_erl.erl

+ 1
- 1
src/rebar_compiler_erl.erl Zobrazit soubor

@ -78,7 +78,7 @@ needed_files(Graph, FoundFiles, _, AppInfo) ->
dependencies(Source, SourceDir, Dirs) ->
case file:open(Source, [read]) of
{ok, Fd} ->
Incls = parse_attrs(Fd, [], SourceDir),
Incls = lists:usort(parse_attrs(Fd, [], SourceDir)),
AbsIncls = expand_file_names(Incls, Dirs),
ok = file:close(Fd),
AbsIncls;

Načítá se…
Zrušit
Uložit