mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Fix for pip invocation when setting up virtual environment during build
This commit is contained in:
parent
a07c718895
commit
9b90668915
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,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", "-I", "-r", req_path])
|
||||
_process_exec([python, "-m", "pip", "install", "-I", "-r", req_path])
|
||||
|
||||
open(marker_path, 'w').close()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue