Browse Source

add clean provider

pull/3/head
Tristan Sloughter 10 years ago
parent
commit
f84c358ad8
3 changed files with 43 additions and 3 deletions
  1. +2
    -1
      src/rebar.app.src
  2. +39
    -0
      src/rebar_prv_clean.erl
  3. +2
    -2
      src/rebar_prv_release.erl

+ 2
- 1
src/rebar.app.src View File

@ -21,7 +21,8 @@
{log_level, warn},
%% any_dir processing modules
{providers, [rebar_prv_deps,
{providers, [rebar_prv_clean,
rebar_prv_deps,
rebar_prv_do,
rebar_prv_lock,
rebar_prv_install_deps,

+ 39
- 0
src/rebar_prv_clean.erl View File

@ -0,0 +1,39 @@
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 et
-module(rebar_prv_clean).
-behaviour(rebar_provider).
-export([init/1,
do/1]).
-include("rebar.hrl").
-define(PROVIDER, clean).
-define(DEPS, [app_discovery]).
%% ===================================================================
%% Public API
%% ===================================================================
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
State1 = rebar_state:add_provider(State, #provider{name = ?PROVIDER,
provider_impl = ?MODULE,
bare = false,
deps = ?DEPS,
example = "rebar clean",
short_desc = "Remove compiled beam files from apps.",
desc = "",
opts = []}),
{ok, State1}.
-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.
do(State) ->
ProjectApps = rebar_state:project_apps(State),
lists:foreach(fun(AppInfo) ->
?INFO("Cleaning out ~s...~n", [rebar_app_info:name(AppInfo)]),
rebar_erlc_compiler:clean(State, ec_cnv:to_list(rebar_app_info:dir(AppInfo)))
end, ProjectApps),
{ok, State}.

+ 2
- 2
src/rebar_prv_release.erl View File

@ -30,6 +30,6 @@ init(State) ->
{ok, State1}.
-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.
do(Config) ->
do(State) ->
relx:main(["release"]),
{ok, Config}.
{ok, State}.

Loading…
Cancel
Save