diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2015-07-29 09:06:58 -0400 |
---|---|---|
committer | Fred Hebert <mononcqc@ferd.ca> | 2015-07-29 09:06:58 -0400 |
commit | 593db011d4c12273565fe0f923db2db2cfd2ef53 (patch) | |
tree | ff1b9ba99d6888224e9b6d3b5e32a1abc933e65e /src | |
parent | b2311d9e4d65e9007712b531b4e05b13aef12dd0 (diff) | |
parent | 3309fa8dc79ab22e46bbd36da1ba5572b6e6204b (diff) |
Merge pull request #667 from tsloughter/clean_all
fix find of deps for clean all
Diffstat (limited to 'src')
-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, |