summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rebar_core.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index e55d838..1449b87 100644
--- a/src/rebar_core.erl
+++ b/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,