Procházet zdrojové kódy

Merge pull request #2001 from ferd/fix-perf-regression

Fix performance regression in compiler around behaviours
pull/2004/head
Fred Hebert před 6 roky
odevzdal GitHub
rodič
revize
369ff85dd6
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
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

@ -317,7 +317,7 @@ expand_file_names(Files, Dirs) ->
true ->
[Incl];
false ->
rebar_utils:find_files_in_dirs(Dirs, Incl, true)
rebar_utils:find_files_in_dirs(Dirs, [$^, Incl, $$], true)
end
end, Files).

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