mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
rebar_config:is_verbose/0: fix variable name
This commit is contained in:
parent
ad1da88a07
commit
2f636236bf
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue