[Checkins] SVN: grokproject/trunk/ At the end of the bootstrap.py of the generated project we now give

Maurits van Rees m.van.rees at zestsoftware.nl
Thu Sep 4 18:17:22 EDT 2008


Log message for revision 90849:
  At the end of the bootstrap.py of the generated project we now give
  the user a hint that he can run bin/buildout.
  

Changed:
  U   grokproject/trunk/CHANGES.txt
  U   grokproject/trunk/grokproject/template/bootstrap.py

-=-
Modified: grokproject/trunk/CHANGES.txt
===================================================================
--- grokproject/trunk/CHANGES.txt	2008-09-04 22:15:57 UTC (rev 90848)
+++ grokproject/trunk/CHANGES.txt	2008-09-04 22:17:21 UTC (rev 90849)
@@ -4,6 +4,9 @@
 0.9 (unreleased)
 ----------------
 
+* At the end of the bootstrap.py of the generated project we now give
+  the user a hint that he can run bin/buildout.
+
 * Explicitly run the install of the eggbasket recipe.
 
 * Fix ftesting.zcml to not include grok package : it precludes overrides of

Modified: grokproject/trunk/grokproject/template/bootstrap.py
===================================================================
--- grokproject/trunk/grokproject/template/bootstrap.py	2008-09-04 22:15:57 UTC (rev 90848)
+++ grokproject/trunk/grokproject/template/bootstrap.py	2008-09-04 22:17:21 UTC (rev 90849)
@@ -65,3 +65,7 @@
 # Install eggbasket too.  This should be verbose to give the user
 # information about what is happening, since this can take a while.
 zc.buildout.buildout.main(sys.argv[1:] + ['-v', 'install', 'eggbasket'])
+if sys.platform == 'win32':
+    print "Now you can run 'bin\buildout.exe'"
+else:
+    print "Now you can run 'bin/buildout'"



More information about the Checkins mailing list