diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2014-06-14 18:25:38 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2014-06-14 19:23:45 +0200 |
commit | 1363ba30381e3f40bddc134fc8415d6569a32ec3 (patch) | |
tree | 33d689726f7a6cd8fb41913abe3f4a6f2d1a3b26 /src/rebar_qc.erl | |
parent | 8fea315b0bfe120d8177c16bda2a6ee3e1343ac0 (diff) |
Wrap cover:stop() call as rebar_cover_utils:exit/0
Diffstat (limited to 'src/rebar_qc.erl')
-rw-r--r-- | src/rebar_qc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_qc.erl b/src/rebar_qc.erl index cd3d288..e08833b 100644 --- a/src/rebar_qc.erl +++ b/src/rebar_qc.erl @@ -185,7 +185,7 @@ run1(QC, QCOpts, Config, CodePath, SrcErls) -> rebar_cover_utils:perform_cover(Config, FilteredModules, SrcModules, qc_dir()), rebar_cover_utils:close(CoverLog), - ok = cover:stop(), + ok = rebar_cover_utils:exit(), true = code:set_path(CodePath), |