Browse Source

rebar_config:is_verbose/0: fix variable name

pull/3/head
Tuncer Ayaz 11 years ago
parent
commit
2f636236bf
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/rebar_config.erl

+ 2
- 2
src/rebar_config.erl View File

@ -111,8 +111,8 @@ get_global(Config, Key, Default) ->
end.
is_verbose(Config) ->
DefaulLevel = rebar_log:default_level(),
get_global(Config, verbose, DefaulLevel) > DefaulLevel.
DefaultLevel = rebar_log:default_level(),
get_global(Config, verbose, DefaultLevel) > DefaultLevel.
consult_file(File) ->
case filename:extension(File) of

Loading…
Cancel
Save