diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2012-11-15 06:06:55 -0800 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2012-11-15 06:06:55 -0800 |
commit | 92fb083011f5b834d6c01a5479c348582c908a4f (patch) | |
tree | 1e16339968bb70ed945cee8fdc0d57a376f274d6 /src | |
parent | bf35ec939214faef0f33c5f7a04c94bde943546a (diff) | |
parent | 6a63ab9f6c0765cdcac48f32e49596c16e6baf39 (diff) |
Merge pull request #18 from tuncer/fix-config-sample
Fix rebar.config.sample
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_erlc_compiler.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_erlc_compiler.erl b/src/rebar_erlc_compiler.erl index d704d2d..a63f9f4 100644 --- a/src/rebar_erlc_compiler.erl +++ b/src/rebar_erlc_compiler.erl @@ -117,7 +117,7 @@ clean(_Config, _AppFile) -> test_compile(Config, Cmd, OutDir) -> %% Obtain all the test modules for inclusion in the compile stage. %% Notice: this could also be achieved with the following - %% rebar.config option: {test_compile_opts, [{src_dirs, ["test"]}]} + %% rebar.config option: {test_compile_opts, [{src_dirs, ["src", "test"]}]} TestErls = rebar_utils:find_files("test", ".*\\.erl\$"), %% Copy source files to eunit dir for cover in case they are not directly |