aboutsummaryrefslogtreecommitdiffstats
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
commit07e879f2f26d85bbb5c7437e7b1ff714774b3ed3 (patch)
tree2adaf565bce171cfd10da1432ff4cf41aec44d48 /bootstrap.py
parent41f2c5ec8dd669747f3cfd8d6b2ae9a40d219545 (diff)
downloadexternal_python_setuptools-07e879f2f26d85bbb5c7437e7b1ff714774b3ed3.tar.gz
external_python_setuptools-07e879f2f26d85bbb5c7437e7b1ff714774b3ed3.tar.bz2
external_python_setuptools-07e879f2f26d85bbb5c7437e7b1ff714774b3ed3.zip
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():