aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-02 22:02:21 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-02 22:02:21 -0500
commit685922ef03d8357a94624b799824bde61d27a9eb (patch)
tree1852d17fc88a26d728bc775803b07107dee99282 /bootstrap.py
parent44d61f17fe8c04fc6046fe04a88a076a49ce6c2e (diff)
downloadexternal_python_setuptools-685922ef03d8357a94624b799824bde61d27a9eb.tar.gz
external_python_setuptools-685922ef03d8357a94624b799824bde61d27a9eb.tar.bz2
external_python_setuptools-685922ef03d8357a94624b799824bde61d27a9eb.zip
Try generating egg_info twice.
Diffstat (limited to 'bootstrap.py')
-rw-r--r--bootstrap.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 60a1b88d..70f96258 100644
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -45,8 +45,11 @@ def build_egg_info():
def run_egg_info():
+ cmd = [sys.executable, 'setup.py', 'egg_info']
print("Regenerating egg_info")
- subprocess.check_call([sys.executable, 'setup.py', 'egg_info'])
+ subprocess.check_call(cmd)
+ print("...and again.")
+ subprocess.check_call(cmd)
if __name__ == '__main__':