aboutsummaryrefslogtreecommitdiffstats
path: root/python/mach_bootstrap.py
diff options
context:
space:
mode:
authorSimon Wörner <git@simon-woerner.de>2017-11-24 00:53:49 +0100
committerSimon Wörner <git@simon-woerner.de>2017-11-24 20:47:11 +0100
commit663d6bc0c5a66412354dff8517b1a5aabe83b71f (patch)
tree1e8224eabfa23079d2c2141f3020870c7d10e2d7 /python/mach_bootstrap.py
parentf08b473c50550697fc401c8ff4b923aefdbd00fc (diff)
downloadservo-663d6bc0c5a66412354dff8517b1a5aabe83b71f.tar.gz
servo-663d6bc0c5a66412354dff8517b1a5aabe83b71f.zip
Enable pip output in mach_bootstrap.py
Diffstat (limited to 'python/mach_bootstrap.py')
-rw-r--r--python/mach_bootstrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py
index 4ea216540b9..0f7e1ac6882 100644
--- a/python/mach_bootstrap.py
+++ b/python/mach_bootstrap.py
@@ -187,7 +187,7 @@ def _activate_virtualenv(topdir, is_firefox):
if not pip:
sys.exit("Python pip is either not installed or not found in virtualenv.")
- _process_exec([pip, "install", "-q", "-I", "-U", "pip"])
+ _process_exec([pip, "install", "-I", "-U", "pip"])
for req_rel_path in requirements_paths:
req_path = os.path.join(topdir, req_rel_path)
@@ -204,7 +204,7 @@ def _activate_virtualenv(topdir, is_firefox):
if not pip:
sys.exit("Python pip is either not installed or not found in virtualenv.")
- _process_exec([pip, "install", "-q", "-I", "-r", req_path])
+ _process_exec([pip, "install", "-I", "-r", req_path])
open(marker_path, 'w').close()