diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2009-12-20 06:20:05 -0700 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2009-12-20 06:20:05 -0700 |
commit | d051534b9707fae83fa4f6c0b63a8e22e3c04e5a (patch) | |
tree | 5da7eb2e4754b44cb9f44a60ba80357f139e50b5 | |
parent | 5fe24a8c977425385deafaa0d7f84552cc2260ef (diff) |
Minor formatting fix
-rw-r--r-- | src/rebar_core.erl | 3 |
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, |