summaryrefslogtreecommitdiff
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
commit92e5baff6042e69cc9085785b16208273f55fd49 (patch)
treeadb4b7357625240cc547ed8fe83c1f8e50d83326 /bootstrap.py
parentf540606d7fb861e509fb31090a4933b385f86902 (diff)
downloadpython-setuptools-bitbucket-92e5baff6042e69cc9085785b16208273f55fd49.tar.gz
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__':