summaryrefslogtreecommitdiff
path: root/src/rebar_prv_common_test.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2015-08-17 19:00:23 -0400
committerFred Hebert <mononcqc@ferd.ca>2015-08-17 19:00:23 -0400
commitd147aaa023ab24360cabb4c38c14a076de0b90c9 (patch)
treee2babc266cc9279aae2fb1fd0d77dadbfaed9e31 /src/rebar_prv_common_test.erl
parentd86399d7110912a9961ff343f501db16b5b24ad4 (diff)
parente941e170e4572d6f5252232b4fd75f1fa4cad2c2 (diff)
Merge pull request #718 from tsloughter/ferd-add-mixed-deps-tests
Ferd add mixed deps tests
Diffstat (limited to 'src/rebar_prv_common_test.erl')
-rw-r--r--src/rebar_prv_common_test.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl
index 2b024cf..1165631 100644
--- a/src/rebar_prv_common_test.erl
+++ b/src/rebar_prv_common_test.erl
@@ -361,10 +361,10 @@ remove_links(Path) ->
end.
delete_dir_link(Path) ->
- case os:type() of
- {unix, _} -> file:delete(Path);
- {win32, _} -> file:del_dir(Path)
- end.
+ case os:type() of
+ {unix, _} -> file:delete(Path);
+ {win32, _} -> file:del_dir(Path)
+ end.
dir_entries(Path) ->
{ok, SubDirs} = file:list_dir(Path),