[Buildbot-commits] buildbot/buildbot/scripts runner.py,1.20,1.21
Brian Warner
warner at users.sourceforge.net
Thu May 12 20:55:17 UTC 2005
Update of /cvsroot/buildbot/buildbot/buildbot/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3719/buildbot/scripts
Modified Files:
runner.py
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-161
Creator: Brian Warner <warner at monolith.lothar.com>
add --logfile=twistd.log to 'buildbot start', for windows
Index: runner.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/scripts/runner.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- runner.py 10 May 2005 22:22:33 -0000 1.20
+++ runner.py 12 May 2005 20:55:14 -0000 1.21
@@ -268,7 +268,10 @@
# spawn twistd, since spawning processes correctly is a real hassle
# on windows.
from twisted.python.runtime import platformType
- argv = ["twistd", "--no_save", "--python=buildbot.tac"]
+ argv = ["twistd",
+ "--no_save",
+ "--logfile=twistd.log", # windows doesn't use the same default
+ "--python=buildbot.tac"]
if platformType == "win32":
argv.append("--reactor=win32")
sys.argv = argv
More information about the Commits
mailing list