Mercurial > hg > autobot
changeset 142:260cebcbb309
move towards the new way of noting sources
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 24 Jan 2011 13:10:01 -0800 |
parents | 19719b24957e |
children | 5f98c1d4ae3c |
files | autobot/projects/mozmill/__init__.py |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/projects/mozmill/__init__.py Mon Jan 24 13:01:26 2011 -0800 +++ b/autobot/projects/mozmill/__init__.py Mon Jan 24 13:10:01 2011 -0800 @@ -7,12 +7,13 @@ factory to test Mozmill http://github.com/mozautomation/mozmill """ + + sources = {'git': ['http://github.com/mozautomation/mozmill']} def __init__(self, firefox_url=None): # setup the environment - VirtualenvFactory.__init__(self, name='mozmill', - git_sources=['http://github.com/mozautomation/mozmill']) + VirtualenvFactory.__init__(self, name='mozmill') self.addStep(ShellCommand(command=['bash', 'setup_development.sh'], workdir=WithProperties('%(virtualenv)s/src/mozmill')))