bootstrap: Actually respect verbosity setting in config.toml

This commit is contained in:
Dennis Schridde 2017-05-24 09:09:17 +02:00
parent 5b13bff520
commit 2aa6700b25

View File

@ -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