mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Fix 'rebar help clean' function_clause error
Missing info(help, clean) in rebar_qc.erl.
This commit is contained in:
parent
75f1383f66
commit
43b3e0d038
1 changed files with 4 additions and 1 deletions
|
@ -73,7 +73,10 @@ info(help, qc) ->
|
||||||
[
|
[
|
||||||
{qc_compile_opts, []},
|
{qc_compile_opts, []},
|
||||||
{qc_first_files, []}
|
{qc_first_files, []}
|
||||||
]).
|
]);
|
||||||
|
info(help, clean) ->
|
||||||
|
Description = ?FMT("Delete QuickCheck test dir (~s)", [?QC_DIR]),
|
||||||
|
?CONSOLE("~s.~n", [Description]).
|
||||||
|
|
||||||
-define(TRIQ_MOD, triq).
|
-define(TRIQ_MOD, triq).
|
||||||
-define(EQC_MOD, eqc).
|
-define(EQC_MOD, eqc).
|
||||||
|
|
Loading…
Reference in a new issue