summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorViacheslav V. Kovalev <kovyl2404@gmail.com>2015-06-27 00:28:37 +0300
committerViacheslav V. Kovalev <kovyl2404@gmail.com>2015-06-27 00:28:37 +0300
commitb2711335aafde6c7bf861a26011568e93667c6d8 (patch)
treeed1f2dd46c72351824afd98675c5a419a831148c /src
parent9a83c35a6fbfcebd1ca92c166efc930fc0f5d4c5 (diff)
parent93cfa4b0b350656b509918e1506dfdbc0891abdc (diff)
Merge branch 'Taure-fix-comments' into windows-ct-fix
Diffstat (limited to 'src')
-rw-r--r--src/rebar_file_utils.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_file_utils.erl b/src/rebar_file_utils.erl
index 735ab49..3fc5698 100644
--- a/src/rebar_file_utils.erl
+++ b/src/rebar_file_utils.erl
@@ -83,7 +83,7 @@ symlink_or_copy(Source, Target) ->
true ->
win32_symlink(S, T);
false ->
- ok
+ cp_r([S], T)
end;
_ ->
case filelib:is_dir(Target) of
@@ -104,7 +104,7 @@ win32_symlink(Source, Target) ->
true -> ok;
false ->
{error, lists:flatten(
- io_lib:format("Failed to sumlink ~s to ~s~n",
+ io_lib:format("Failed to symlink ~s to ~s~n",
[Source, Target]))}
end.