Chromium Code Reviews| Index: bootstrap/bootstrap.py |
| diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py |
| index 5a6479fcb5ac1aee06f1524839f2ea046b9b258f..c48e93799036f619e4dab4e67d3c04ac04e5cb22 100755 |
| --- a/bootstrap/bootstrap.py |
| +++ b/bootstrap/bootstrap.py |
| @@ -151,8 +151,7 @@ def install(deps): |
| if not deps_entry.get('implicit'): |
| requirements.append('%s==%s' % (name, deps_entry['version'])) |
| subprocess.check_call( |
| - [pip, 'install', '--no-index', '--download-cache', |
|
Vadim Sh.
2016/06/08 00:26:30
update README.md not to mention .wheelcache
nodir
2016/06/08 00:46:05
Done.
|
| - os.path.join(ROOT, '.wheelcache'), '-f', ipath] + requirements) |
| + [pip, 'install', '--no-index', '-f', ipath] + requirements) |
| def activate_env(env, deps, quiet=False): |