From d051534b9707fae83fa4f6c0b63a8e22e3c04e5a Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Sun, 20 Dec 2009 06:20:05 -0700 Subject: [PATCH] Minor formatting fix --- src/rebar_core.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,