Mercurial > hg > autobot
changeset 79:27f8f172d900
* fix a typo
* hopefully have better displays in waterfall
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 11 Jan 2011 15:46:30 -0800 |
parents | aa99dc11f707 |
children | 1661f5bb5250 |
files | autobot/process/factory.py autobot/projects/autobot/__init__.py |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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))
--- 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']))