From 4b127e051b46ac6f4c75dd904eb9148687a15e9c Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sat, 20 Jul 2013 08:37:14 -0700 Subject: [PATCH] Remove -M from the pip install command dstufft suggests not using the -M command for forcing use of the mirrors since it causes scanning all of the mirrors every time. Change-Id: I3f6ec19f3cbbde14d7b196c19c8b490936b757bc --- jeepyb/cmd/run_mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeepyb/cmd/run_mirror.py b/jeepyb/cmd/run_mirror.py index 5fded8c..a76da7c 100644 --- a/jeepyb/cmd/run_mirror.py +++ b/jeepyb/cmd/run_mirror.py @@ -157,7 +157,7 @@ class Mirror(object): def build_mirror(self, mirror): print("Building mirror: %s" % mirror['name']) - pip_format = ("%s install -M -U %s --exists-action=w " + pip_format = ("%s install -U %s --exists-action=w " "--download-cache=%s --build %s -r %s") venv_format = ("virtualenv --clear --extra-search-dir=%s %s") upgrade_format = ("%s install -U --exists-action=w "