diff options
author | YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp> | 2013-08-30 18:10:17 +0900 |
---|---|---|
committer | YAMAMOTO Takashi <yamt@netbsd.org> | 2014-05-30 14:37:37 +0900 |
commit | 7fd5a2d630ab196702222e7b51bd32a55dad210c (patch) | |
tree | 5462b2668803478b57918f615c6639fd1109bfba | |
parent | 46c979eaaf7fc0180e2c47466cb098e2794719a9 (diff) |
Fix a format of a debug output
-rw-r--r-- | src/rebar_ct.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl index f3ed29f..91cd1c3 100644 --- a/src/rebar_ct.erl +++ b/src/rebar_ct.erl @@ -280,7 +280,7 @@ get_cover_config(Config, Cwd) -> ?DEBUG("No cover spec found: ~s~n", [Cwd]), ""; [Spec] -> - ?DEBUG("Found cover file ~w~n", [Spec]), + ?DEBUG("Found cover file ~s~n", [Spec]), " -cover " ++ Spec; Specs -> ?ABORT("Multiple cover specs found: ~p~n", [Specs]) |