Browse Source

Fix a format of a debug output

pull/3/head
YAMAMOTO Takashi 11 years ago
committed by YAMAMOTO Takashi
parent
commit
7fd5a2d630
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_ct.erl

+ 1
- 1
src/rebar_ct.erl View File

@ -280,7 +280,7 @@ get_cover_config(Config, Cwd) ->
?DEBUG("No cover spec found: ~s~n", [Cwd]), ?DEBUG("No cover spec found: ~s~n", [Cwd]),
""; "";
[Spec] -> [Spec] ->
?DEBUG("Found cover file ~w~n", [Spec]),
?DEBUG("Found cover file ~s~n", [Spec]),
" -cover " ++ Spec; " -cover " ++ Spec;
Specs -> Specs ->
?ABORT("Multiple cover specs found: ~p~n", [Specs]) ?ABORT("Multiple cover specs found: ~p~n", [Specs])

Loading…
Cancel
Save