浏览代码

Minor formatting fix

pull/3/head
Dave Smith 15 年前
父节点
当前提交
d051534b97
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/rebar_core.erl

+ 2
- 1
src/rebar_core.erl 查看文件

@ -106,7 +106,8 @@ process_dir(Dir, ParentConfig, Commands) ->
Subdirs ->
%% Edge case: config is inherited, EXCEPT for sub_dir directives -- filter those out
FilteredConfig = rebar_config:delete(Config, sub_dirs),
[process_dir(filename:join(Dir, Subdir), FilteredConfig, Commands) || Subdir <- Subdirs],
[process_dir(filename:join(Dir, Subdir), FilteredConfig, Commands) ||
Subdir <- Subdirs],
ok = file:set_cwd(Dir)
end,

正在加载...
取消
保存