summaryrefslogtreecommitdiff
path: root/src/rebar_prv_clean.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-09-09 20:20:56 -0500
committerTristan Sloughter <t@crashfast.com>2015-09-09 20:20:56 -0500
commit14ab5f562efdcbaac54732c3776af4f5acbae1d9 (patch)
tree372b2060630fab11f691041ef9fb60a9a21e900a /src/rebar_prv_clean.erl
parent6eb28a94ca87f7d1e0ed9bde45b98b15ab1fcd5b (diff)
fix dialyzer warnings
Diffstat (limited to 'src/rebar_prv_clean.erl')
-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 8bdea4d..a2b537a 100644
--- a/src/rebar_prv_clean.erl
+++ b/src/rebar_prv_clean.erl
@@ -66,7 +66,7 @@ clean_apps(State, Providers, Apps) ->
?INFO("Cleaning out ~s...", [rebar_app_info:name(AppInfo)]),
AppDir = rebar_app_info:dir(AppInfo),
AppInfo1 = rebar_hooks:run_all_hooks(AppDir, pre, ?PROVIDER, Providers, AppInfo, State),
- rebar_erlc_compiler:clean(State, rebar_app_info:out_dir(AppInfo1)),
+ rebar_erlc_compiler:clean(rebar_app_info:out_dir(AppInfo1)),
rebar_hooks:run_all_hooks(AppDir, post, ?PROVIDER, Providers, AppInfo1, State)
end || AppInfo <- Apps].