浏览代码

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

Fix performance regression in compiler around behaviours
pull/2004/head
Fred Hebert 6 年前
提交者 GitHub
父节点
当前提交
369ff85dd6
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rebar_compiler_erl.erl

+ 1
- 1
src/rebar_compiler_erl.erl 查看文件

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

正在加载...
取消
保存