diff options
Diffstat (limited to 'bootstrap.py')
-rw-r--r-- | bootstrap.py | 5 |
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__': |