summaryrefslogtreecommitdiff
path: root/src/rebar_prv_common_test.erl
diff options
context:
space:
mode:
authorDaniel Widgren <daniel.widgren@gmail.com>2015-06-26 22:39:15 +0200
committerDaniel Widgren <daniel.widgren@gmail.com>2015-06-26 22:39:15 +0200
commitebfdbc695ef8bf615ab28fba1d8c22752f21e1cd (patch)
tree8d526eb0ab46d05e1a329b133280b3d16be9aac5 /src/rebar_prv_common_test.erl
parent44272e23b641a016b74edf0cb9849b0656e8f726 (diff)
Fixed review comments
Diffstat (limited to 'src/rebar_prv_common_test.erl')
-rw-r--r--src/rebar_prv_common_test.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl
index f76fdf5..9128064 100644
--- a/src/rebar_prv_common_test.erl
+++ b/src/rebar_prv_common_test.erl
@@ -354,7 +354,7 @@ remove_links(Path) ->
true ->
file:delete(Path);
false ->
- ec_file:is_dir(Path) andalso
+ IsDir andalso
lists:foreach(fun(ChildPath) ->
remove_links(ChildPath)
end, sub_dirs(Path))