Browse Source

Adding convenience method for determing verbosity of run

pull/3/head
Dave Smith 15 years ago
parent
commit
cb1899b818
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      src/rebar_config.erl

+ 10
- 1
src/rebar_config.erl View File

@ -28,7 +28,8 @@
get_modules/2,
get_list/3,
get/3,
set_global/2, get_global/2]).
set_global/2, get_global/2,
is_verbose/0]).
-include("rebar.hrl").
@ -91,6 +92,14 @@ get_global(Key, Default) ->
Value
end.
is_verbose() ->
case get_global(verbose, "0") of
"1" ->
true;
_ ->
false
end.
%% ===================================================================
%% Internal functions

Loading…
Cancel
Save