aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.py')
-rw-r--r--bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py
index ad9b067e..ee3b53c8 100644
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -75,7 +75,6 @@ def gen_deps():
def install_deps():
"Just in time make the deps available"
import pip
- gen_deps()
tmpdir = tempfile.mkdtemp()
args = [
'install',
@@ -92,6 +91,7 @@ def install_deps():
def main():
ensure_egg_info()
+ gen_deps()
try:
# first assume dependencies are present
run_egg_info()