diff options
Diffstat (limited to 'bootstrap.py')
-rw-r--r-- | bootstrap.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bootstrap.py b/bootstrap.py index cbc1ca9d..919594f7 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -28,8 +28,10 @@ minimal_egg_info = textwrap.dedent(""" """) def ensure_egg_info(): - if not os.path.exists('setuptools.egg-info'): - build_egg_info() + if os.path.exists('setuptools.egg-info'): + return + print("adding minimal entry_points") + build_egg_info() def build_egg_info(): |