bootstrap: Actually respect verbosity setting in config.toml
This commit is contained in:
parent
5b13bff520
commit
2aa6700b25
1 changed files with 5 additions and 0 deletions
|
@ -620,6 +620,11 @@ def bootstrap():
|
|||
except:
|
||||
pass
|
||||
|
||||
if '\nverbose = 2' in rb.config_toml:
|
||||
rb.verbose = 2
|
||||
elif '\nverbose = 1' in rb.config_toml:
|
||||
rb.verbose = 1
|
||||
|
||||
rb.use_vendored_sources = '\nvendor = true' in rb.config_toml or \
|
||||
'CFG_ENABLE_VENDOR' in rb.config_mk
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue