summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-03-01 17:14:06 -0600
committerTristan Sloughter <t@crashfast.com>2015-03-01 17:14:06 -0600
commitaf0f4bb20a66f1464fa25d31f9b69784f3119493 (patch)
tree93c5765000211a1c26a949b12f9b089360acbbda /src
parent0a8ee68042e209509e6357bebd2ee5936407802b (diff)
include test dir in symlinks
Diffstat (limited to 'src')
-rw-r--r--src/rebar_prv_compile.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_compile.erl b/src/rebar_prv_compile.erl
index 3d952ab..bce4aab 100644
--- a/src/rebar_prv_compile.erl
+++ b/src/rebar_prv_compile.erl
@@ -124,7 +124,7 @@ copy_app_dirs(OldAppDir, AppDir) ->
end,
filelib:ensure_dir(filename:join(AppDir, "dummy")),
%% link to src to be adjacent to ebin is needed for R15 use of cover/xref
- [symlink_or_copy(OldAppDir, AppDir, Dir) || Dir <- ["priv", "include", "src"]];
+ [symlink_or_copy(OldAppDir, AppDir, Dir) || Dir <- ["priv", "include", "src", "test"]];
false ->
ok
end.