acfd76308f59 — Peter Sanchez 13 years ago
Added download cache for pip install.
1 files changed, 2 insertions(+), 1 deletions(-)

M fabfile.py
M fabfile.py +2 -1
@@ 235,7 235,8 @@ def install_requirements():
 
     with cd('%(path)s/releases/%(release)s' % env):
         cmd = './bin/pip install -E . '
-        cmd += '-r ./%(project_name)s/requirements.txt' % env
+        cmd += '-r ./%(project_name)s/requirements.txt ' % env
+        cmd += '--download-cache=~/.pipcache'
         _run(cmd)