Commit 685922ef authored by Jason R. Coombs's avatar Jason R. Coombs

Try generating egg_info twice.

parent 44d61f17
......@@ -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__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment