[Checkins] SVN: zc.buildout/trunk/bootstrap.py More changes reflecting use of develop-eggs.

Jim Fulton cvs-admin at zope.org
Sat Jun 17 18:32:08 EDT 2006


Log message for revision 68726:
  More changes  reflecting use of develop-eggs.
  

Changed:
  U   zc.buildout/trunk/bootstrap.py

-=-
Modified: zc.buildout/trunk/bootstrap.py
===================================================================
--- zc.buildout/trunk/bootstrap.py	2006-06-17 22:27:46 UTC (rev 68725)
+++ zc.buildout/trunk/bootstrap.py	2006-06-17 22:32:05 UTC (rev 68726)
@@ -18,7 +18,7 @@
 
 import os, sys, urllib2
 
-for d in 'eggs', 'bin':
+for d in 'eggs', 'develop-eggs', 'bin':
     if not os.path.exists(d):
         os.mkdir(d)
 
@@ -52,7 +52,7 @@
 ## easy.finalize_options()
 ## easy.easy_install('zc.buildout')
 
-env = pkg_resources.Environment(['eggs'])
+env = pkg_resources.Environment(['develop-eggs', 'eggs'])
 
 ws = pkg_resources.WorkingSet()
 sys.path[0:0] = [



More information about the Checkins mailing list