# HG changeset patch # User Jeff Hammel # Date 1294789590 28800 # Node ID 27f8f172d900af4c7c35806be37f781a20d58cfc # Parent aa99dc11f707d19ec221adf242b155917d17a758 * fix a typo * hopefully have better displays in waterfall diff -r aa99dc11f707 -r 27f8f172d900 autobot/process/factory.py --- a/autobot/process/factory.py Tue Jan 11 15:41:28 2011 -0800 +++ b/autobot/process/factory.py Tue Jan 11 15:46:30 2011 -0800 @@ -93,5 +93,6 @@ for package in sources: self.addStep(ShellCommand(command=[WithProperties('%(python)s'), 'setup.py', 'install'], workdir=WithProperties('%(virtualenv)s/src/' + package), + description='install ' + package, haltOnFailure=True)) diff -r aa99dc11f707 -r 27f8f172d900 autobot/projects/autobot/__init__.py --- a/autobot/projects/autobot/__init__.py Tue Jan 11 15:41:28 2011 -0800 +++ b/autobot/projects/autobot/__init__.py Tue Jan 11 15:46:30 2011 -0800 @@ -16,5 +16,5 @@ self.findScript('create-autobot') # make sure the template actually does something - self.addStep(ShellCommand([WithProperties('%(create-autobot)s'), - '--list-factories'])) + self.addStep(ShellCommand(command=[WithProperties('%(create-autobot)s'), + '--list-factories']))