mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Add missing rebar_qc:clean/2
This commit is contained in:
parent
92fb083011
commit
7d624e9018
1 changed files with 4 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
|||
%% -------------------------------------------------------------------
|
||||
-module(rebar_qc).
|
||||
|
||||
-export([qc/2, triq/2, eqc/2]).
|
||||
-export([qc/2, triq/2, eqc/2, clean/2]).
|
||||
|
||||
-include("rebar.hrl").
|
||||
|
||||
|
@ -50,6 +50,9 @@ eqc(Config, _AppFile) ->
|
|||
ok = load_qc_mod(eqc),
|
||||
run_qc(Config, qc_opts(Config), eqc).
|
||||
|
||||
clean(_Config, _File) ->
|
||||
rebar_file_utils:rm_rf(?QC_DIR).
|
||||
|
||||
%% ===================================================================
|
||||
%% Internal functions
|
||||
%% ===================================================================
|
||||
|
|
Loading…
Reference in a new issue