Преглед изворни кода

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…
Откажи
Сачувај