summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2014-12-27 20:49:09 -0500
committerDonald Stufft <donald@stufft.io>2014-12-27 20:49:09 -0500
commit1a35caf3f18c893a372f6ac68b8e063c935e3a61 (patch)
treeca61a1461f582f09b7ff7c61914dceb911c8d109 /tasks
parent40e2a0e5c509ef1a022228e49306a7afd7086bf1 (diff)
downloadpip-1a35caf3f18c893a372f6ac68b8e063c935e3a61.tar.gz
Don't use the cache directory when using get-pip.py
Diffstat (limited to 'tasks')
-rw-r--r--tasks/generate.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tasks/generate.py b/tasks/generate.py
index 098f9f483..c9568d0e6 100644
--- a/tasks/generate.py
+++ b/tasks/generate.py
@@ -170,7 +170,9 @@ def bootstrap(tmpdir=None):
# Execute the included pip and use it to install the latest pip and
# setuptools from PyPI
- sys.exit(pip.main(["install", "--upgrade"] + packages + args))
+ sys.exit(pip.main(
+ ["install", "--upgrade", "--no-cache-dir"] + packages + args
+ ))
finally:
# Remove our temporary directory
if delete_tmpdir and tmpdir: