diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2015-04-02 21:02:12 -0400 |
---|---|---|
committer | Fred Hebert <mononcqc@ferd.ca> | 2015-04-02 21:02:12 -0400 |
commit | ae7c039336db80865d887e0d9b3a1ffdc55d161e (patch) | |
tree | 96cc6ff142335c588d4c63712bccf21bbc4ca7c7 | |
parent | 74854c88fc322c04e63ba6c9e949e88d459aaad7 (diff) | |
parent | 9f835553f0c9903f99c57d32dfe0a973195cc185 (diff) |
Merge pull request #309 from tsloughter/clean_fix
fix clean all to use proper deps dir
-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 8fbc516..0da286b 100644 --- a/src/rebar_prv_clean.erl +++ b/src/rebar_prv_clean.erl @@ -37,7 +37,7 @@ do(State) -> case All of true -> - DepsDir = rebar_state:get(State, deps_dir, ?DEFAULT_DEPS_DIR), + DepsDir = rebar_dir:deps_dir(State), DepApps = rebar_app_discover:find_apps([DepsDir], all); false -> DepApps = [] |