[Checkins] SVN: zope.wineggbuilder/trunk/src/zope/wineggbuilder/base.py need to set working folder

Adam Groszer cvs-admin at zope.org
Mon Jan 21 10:17:33 UTC 2013


Log message for revision 129063:
  need to set working folder

Changed:
  U   zope.wineggbuilder/trunk/src/zope/wineggbuilder/base.py

-=-
Modified: zope.wineggbuilder/trunk/src/zope/wineggbuilder/base.py
===================================================================
--- zope.wineggbuilder/trunk/src/zope/wineggbuilder/base.py	2013-01-21 10:13:43 UTC (rev 129062)
+++ zope.wineggbuilder/trunk/src/zope/wineggbuilder/base.py	2013-01-21 10:17:32 UTC (rev 129063)
@@ -71,7 +71,9 @@
 
     def clone(self, url, folder):
         command = 'git clone %s %s' % (url, folder)
-        return self.cmd.do(command)
+        r = self.cmd.do(command)
+        self.cmd.cwd = folder  # hackish attempt to constrain commands to cwd
+        return r
 
     def checkout(self, branch):
         command = 'git checkout %s' % branch



More information about the checkins mailing list