Browse Source

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

Fix performance regression in compiler around behaviours
pull/2004/head
Fred Hebert 6 years ago
committed by GitHub
parent
commit
369ff85dd6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_compiler_erl.erl

+ 1
- 1
src/rebar_compiler_erl.erl View File

@ -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).

Loading…
Cancel
Save