mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Enable pip output in mach_bootstrap.py
This commit is contained in:
parent
f08b473c50
commit
663d6bc0c5
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue