소스 검색

Use new rebar_config API to avoid having to actually delete/change the config any

pull/3/head
Dave Smith 15 년 전
부모
커밋
a46be8cec1
1개의 변경된 파일2개의 추가작업 그리고 6개의 파일을 삭제
  1. +2
    -6
      src/rebar_subdirs.erl

+ 2
- 6
src/rebar_subdirs.erl 파일 보기

@ -35,10 +35,6 @@
preprocess(Config, _) ->
%% Get the list of subdirs specified in the config (if any).
Cwd = rebar_utils:get_cwd(),
Subdirs = [filename:join(Cwd, Dir) || Dir <- rebar_config:get(Config, sub_dirs, [])],
%% Filter out the subdirs from the config so that processing in the
%% subdirs doesn't try to reprocess
Config2 = rebar_config:delete(Config, sub_dirs),
{ok, Config2, Subdirs}.
Subdirs = [filename:join(Cwd, Dir) || Dir <- rebar_config:get_local(Config, sub_dirs, [])],
{ok, Config, Subdirs}.

불러오는 중...
취소
저장