From 43b3e0d038fde904d420dd1a6045c95c5e7f0094 Mon Sep 17 00:00:00 2001 From: goofansu Date: Sat, 12 Apr 2014 13:04:36 +0800 Subject: [PATCH] Fix 'rebar help clean' function_clause error Missing info(help, clean) in rebar_qc.erl. --- src/rebar_qc.erl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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).