[Erp5-report] r40491 luke - /erp5/trunk/buildout/software-profiles/erp5-2.12.cfg
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Nov 22 17:32:10 CET 2010
Author: luke
Date: Mon Nov 22 17:32:09 2010
New Revision: 40491
URL: http://svn.erp5.org?rev=40491&view=rev
Log:
- & runs processes in background, || exit 1 will make them exit with error code
Modified:
erp5/trunk/buildout/software-profiles/erp5-2.12.cfg
Modified: erp5/trunk/buildout/software-profiles/erp5-2.12.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/erp5-2.12.cfg?rev=40491&r1=40490&r2=40491&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/erp5-2.12.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/erp5-2.12.cfg [utf8] Mon Nov 22 17:32:09 2010
@@ -68,7 +68,7 @@ stop-on-error = true
update-command = ${:command}
product_list = AGProjects CMFActivity CMFCategory ERP5 ERP5Catalog ERP5Form ERP5Legacy ERP5OOo ERP5Security ERP5SyncML ERP5Type ERP5Wizard ERP5Workflow Formulator HBTreeFolder2 MailTemplates PortalTransforms TimerService ZMySQLDA ZMySQLDDA ZSQLCatalog
command =
- for product in ${:product_list} ; do ${subversion:location}/bin/svn checkout ${:svn_param} https://svn.erp5.org/repos/public/erp5/trunk/products/$product ${:location}/$product & done
+ for product in ${:product_list} ; do ${subversion:location}/bin/svn checkout ${:svn_param} https://svn.erp5.org/repos/public/erp5/trunk/products/$product ${:location}/$product || exit 1 ; done
[products-erp5-development]
# Recipe infrae.subversion is using svn command under the hood, but there is
@@ -81,7 +81,7 @@ stop-on-error = true
update-command = ${:command}
product_list = ERP5Subversion
command =
- for product in ${:product_list} ; do ${subversion:location}/bin/svn checkout ${:svn_param} https://svn.erp5.org/repos/public/erp5/trunk/products/$product ${:location}/$product & done
+ for product in ${:product_list} ; do ${subversion:location}/bin/svn checkout ${:svn_param} https://svn.erp5.org/repos/public/erp5/trunk/products/$product ${:location}/$product || exit 1 ; done
[products]
recipe = plone.recipe.command
More information about the Erp5-report
mailing list