[Buildbot-commits] buildbot/buildbot/slave commands.py,1.55,1.56
Brian Warner
warner at users.sourceforge.net
Wed Jun 28 20:05:48 UTC 2006
Update of /cvsroot/buildbot/buildbot/buildbot/slave
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21514/buildbot/slave
Modified Files:
commands.py
Log Message:
[project @ SVN: add --non-interactive to all spawned commands]
Original author: warner at lothar.com
Date: 2006-06-28 20:03:44
Index: commands.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/commands.py,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- commands.py 20 Jun 2006 08:09:04 -0000 1.55
+++ commands.py 28 Jun 2006 20:05:46 -0000 1.56
@@ -1129,7 +1129,8 @@
revision = self.args['revision'] or 'HEAD'
# update: possible for mode in ('copy', 'update')
d = os.path.join(self.builder.basedir, self.srcdir)
- command = [self.vcexe, 'update', '--revision', str(revision)]
+ command = [self.vcexe, 'update', '--revision', str(revision),
+ '--non-interactive']
c = ShellCommand(self.builder, command, d,
sendRC=False, timeout=self.timeout,
keepStdout=True)
@@ -1141,10 +1142,12 @@
d = self.builder.basedir
if self.mode == "export":
command = [self.vcexe, 'export', '--revision', str(revision),
+ '--non-interactive',
self.svnurl, self.srcdir]
else:
# mode=='clobber', or copy/update on a broken workspace
command = [self.vcexe, 'checkout', '--revision', str(revision),
+ '--non-interactive',
self.svnurl, self.srcdir]
c = ShellCommand(self.builder, command, d,
sendRC=False, timeout=self.timeout,
More information about the Commits
mailing list