diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-07-28 18:33:21 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-07-28 18:33:21 -0500 |
commit | f77457343ae0af07110bf459013815a568656960 (patch) | |
tree | a122eb7f1e61d6c4bf7b847ae2498cc99d9accb3 | |
parent | 7c46eea294ecce8338bee7e76a13a0390b7c5901 (diff) |
fix find of deps for clean all
-rw-r--r-- | src/rebar_prv_clean.erl | 2 |
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, |