# HG changeset patch # User Jeff Hammel # Date 1294795318 28800 # Node ID 1661f5bb52507bc42b384126ed6794bdf44d59b9 # Parent 27f8f172d900af4c7c35806be37f781a20d58cfc wipe a virtualenv before we make it diff -r 27f8f172d900 -r 1661f5bb5250 autobot/process/factory.py --- a/autobot/process/factory.py Tue Jan 11 15:46:30 2011 -0800 +++ b/autobot/process/factory.py Tue Jan 11 17:21:58 2011 -0800 @@ -29,6 +29,10 @@ """ BuildFactory.__init__(self) + # wipe any vesitages + self.addStep(ShellCommand(command=['rm', '-rf', name])) + + # create a virtualenv self.addStep(CreateVirtualenv(name)) # set properities related to the virtualenv: