]> git.lizzy.rs Git - rust.git/commitdiff
bootstrap: Actually respect verbosity setting in config.toml
authorDennis Schridde <devurandom@gmx.net>
Wed, 24 May 2017 07:09:17 +0000 (09:09 +0200)
committerDennis Schridde <devurandom@gmx.net>
Wed, 24 May 2017 08:52:52 +0000 (10:52 +0200)
src/bootstrap/bootstrap.py

index bfba1a0dede24d50cb9929afb0a6d3b1d8b0ec61..871c101511e996f643cb5cbbf98dd432f7f2b918 100644 (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