瀏覽代碼

Tweak regex to properly match extension and not just .erl anywhere in filename

pull/3/head
Dave Smith 15 年之前
父節點
當前提交
42647f4c22
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/rebar_erlc_compiler.erl

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

@ -66,7 +66,7 @@ clean(_Config, _AppFile) ->
doterl_compile(Config, Outdir) ->
FirstErls = rebar_config:get_list(Config, erl_first_files, []),
RestErls = [Source || Source <- rebar_utils:find_files("src", ".*.erl"),
RestErls = [Source || Source <- rebar_utils:find_files("src", ".*\\.erl\$"),
lists:member(Source, FirstErls) == false],
rebar_base_compiler:run(Config, FirstErls, RestErls,
fun(S, C) -> internal_erl_compile(S, C, Outdir) end).

Loading…
取消
儲存