Explorar el Código

Merge pull request #1957 from tsloughter/subdir-behaviours

search subdirectories as well for imports/transforms/behaviours
pull/1965/head
Fred Hebert hace 6 años
cometido por GitHub
padre
commit
ebc1186c34
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 10 borrados
  1. +1
    -10
      src/rebar_compiler_erl.erl

+ 1
- 10
src/rebar_compiler_erl.erl Ver fichero

@ -317,16 +317,7 @@ expand_file_names(Files, Dirs) ->
true ->
[Incl];
false ->
lists:flatmap(
fun(Dir) ->
FullPath = filename:join(Dir, Incl),
case filelib:is_regular(FullPath) of
true ->
[FullPath];
false ->
[]
end
end, Dirs)
rebar_utils:find_files_in_dirs(Dirs, Incl, true)
end
end, Files).

Cargando…
Cancelar
Guardar