diff options
author | Jared Morrow <jared@basho.com> | 2014-04-16 07:53:57 -0600 |
---|---|---|
committer | Jared Morrow <jared@basho.com> | 2014-04-16 07:53:57 -0600 |
commit | 8edaa08ba6b051f49ec3631ca1aa424573c3dac6 (patch) | |
tree | c5059ecc38fafbabd137dba1288ce025544dd681 /src | |
parent | 75f1383f669e0ce16324e3ada53e805e500bda71 (diff) | |
parent | 43b3e0d038fde904d420dd1a6045c95c5e7f0094 (diff) |
Merge pull request #265 from goofansu/fix-qc-help-clean
Fix 'rebar help clean' function_clause error
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_qc.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rebar_qc.erl b/src/rebar_qc.erl index 99d37a2..1976722 100644 --- a/src/rebar_qc.erl +++ b/src/rebar_qc.erl @@ -73,7 +73,10 @@ info(help, qc) -> [ {qc_compile_opts, []}, {qc_first_files, []} - ]). + ]); +info(help, clean) -> + Description = ?FMT("Delete QuickCheck test dir (~s)", [?QC_DIR]), + ?CONSOLE("~s.~n", [Description]). -define(TRIQ_MOD, triq). -define(EQC_MOD, eqc). |