[Buildbot-commits] buildbot/buildbot/slave commands.py,1.18,1.19

Brian Warner warner at users.sourceforge.net
Mon Dec 6 09:00:34 UTC 2004


Update of /cvsroot/buildbot/buildbot/buildbot/slave
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21398/buildbot/slave

Modified Files:
	commands.py 
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-14
Creator:  Brian Warner <warner at lothar.com>

Arch.doVCUpdate: use 'tla replay' instead of 'tla update'

2004-12-06  Brian Warner  <warner at lothar.com>

   * buildbot/slave/commands.py (Arch.doVCUpdate): use 'tla replay'
   instead of 'tla update', which is more efficient in case we've
   missed a couple of patches since the last update.


Index: commands.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/commands.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- commands.py	4 Dec 2004 21:02:03 -0000	1.18
+++ commands.py	6 Dec 2004 09:00:32 -0000	1.19
@@ -827,7 +827,7 @@
     def doVCUpdate(self):
         # update: possible for mode in ('copy', 'update')
         d = os.path.join(self.builder.basedir, self.srcdir)
-        command = ['tla', 'update']
+        command = ['tla', 'replay']
         c = ShellCommand(self.builder, command, d,
                          sendRC=False, timeout=self.timeout)
         self.command = c





More information about the Commits mailing list