summaryrefslogtreecommitdiff
path: root/bootstrap.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-02 21:49:37 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-02 21:49:37 -0500
commita5458c714e66061505f48cd2788bcaeb280eebd0 (patch)
tree68bce7209b8f61f86df874e8ab5c515b15d05173 /bootstrap.py
parentc73f2792c1f25e014e3d0950ad80fa2a6d1edf33 (diff)
downloadpython-setuptools-bitbucket-a5458c714e66061505f48cd2788bcaeb280eebd0.tar.gz
Add output to determine if egg-info is being created.
Diffstat (limited to 'bootstrap.py')
-rw-r--r--bootstrap.py6
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():