From 685922ef03d8357a94624b799824bde61d27a9eb Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 2 Jan 2015 22:02:21 -0500 Subject: Try generating egg_info twice. --- bootstrap.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bootstrap.py') 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__': -- cgit v1.2.3