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

Unified Diff: tools/bots/bot.py

Issue 11411004: Remove the mode flag for clobbering - we will now just nuke the complete output directory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 | « client/tools/buildbot_annotated_steps.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/bot.py
===================================================================
--- tools/bots/bot.py (revision 14947)
+++ tools/bots/bot.py (working copy)
@@ -137,7 +137,7 @@
os.chdir(DART_PATH)
try:
- Clobber(build_info.mode)
+ Clobber()
build_step(build_info)
custom_steps(build_info)
@@ -171,7 +171,7 @@
return name, True
-def Clobber(mode):
+def Clobber():
"""
Clobbers the builder before we do the build, if appropriate.
@@ -182,8 +182,7 @@
with BuildStep('Clobber'):
cmd = [sys.executable,
- './tools/clean_output_directory.py',
- '--mode=' + mode]
+ './tools/clean_output_directory.py']
print 'Clobbering %s' % (' '.join(cmd))
RunProcess(cmd)
« no previous file with comments | « client/tools/buildbot_annotated_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698