Skip to content

Commit

Permalink
bootstrap: Actually respect verbosity setting in config.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
devurandom committed May 24, 2017
1 parent 5b13bff commit 2aa6700
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2aa6700

Please sign in to comment.