Try generating egg_info twice.

This commit is contained in:
Jason R. Coombs 2015-01-02 22:02:21 -05:00
parent 44d61f17fe
commit 685922ef03
1 changed files with 4 additions and 1 deletions

View File

@ -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__':