summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-07-28 18:33:21 -0500
committerTristan Sloughter <t@crashfast.com>2015-07-28 18:33:21 -0500
commitf77457343ae0af07110bf459013815a568656960 (patch)
treea122eb7f1e61d6c4bf7b847ae2498cc99d9accb3
parent7c46eea294ecce8338bee7e76a13a0390b7c5901 (diff)
fix find of deps for clean all
-rw-r--r--src/rebar_prv_clean.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_clean.erl b/src/rebar_prv_clean.erl
index e3cb84e..f10d12b 100644
--- a/src/rebar_prv_clean.erl
+++ b/src/rebar_prv_clean.erl
@@ -39,7 +39,7 @@ do(State) ->
case All of
true ->
DepsDir = rebar_dir:deps_dir(State),
- DepApps = rebar_app_discover:find_apps([DepsDir], all);
+ DepApps = rebar_app_discover:find_apps([filename:join(DepsDir, "*")], all);
false ->
DepApps = []
end,