Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Unified Diff: third_party/buildbot_8_4p1/buildbot/scripts/runner.py

Issue 2084383003: Move 'buildbot.tac' and 'buildbot' files to a common directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/tools/state_create.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/buildbot_8_4p1/buildbot/scripts/runner.py
diff --git a/third_party/buildbot_8_4p1/buildbot/scripts/runner.py b/third_party/buildbot_8_4p1/buildbot/scripts/runner.py
index 73b2e16d521d963cad42a47342aa2d3398cc56dd..aff6a14a970d721a1e458f2a82c3d4573a98a55b 100644
--- a/third_party/buildbot_8_4p1/buildbot/scripts/runner.py
+++ b/third_party/buildbot_8_4p1/buildbot/scripts/runner.py
@@ -47,9 +47,9 @@ def in_reactor(f):
return wrap
def isBuildmasterDir(dir):
- buildbot_tac = os.path.join(dir, "buildbot.tac")
+ buildbot_tac = os.path.join(dir, "master.cfg")
if not os.path.isfile(buildbot_tac):
- print "no buildbot.tac"
+ print "no master.cfg"
return False
contents = open(buildbot_tac, "r").read()
@@ -315,8 +315,6 @@ class Maker:
else:
if not self.quiet:
print "%s has old/modified contents" % target
- print " writing new contents to %s.new" % target
- open(target + ".new", "wt").write(new_contents)
# otherwise, it's up to date
else:
if not self.quiet:
« no previous file with comments | « scripts/tools/state_create.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698