Просмотр исходного кода

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

pull/3/head
Dave Smith 15 лет назад
Родитель
Сommit
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).

Загрузка…
Отмена
Сохранить