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

Unified Diff: scripts/slave/recipe_modules/rietveld/api.py

Issue 17635005: Make blink_trybot recipe work on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fix presubmit + move polyfill (retry) Created 7 years, 6 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
Index: scripts/slave/recipe_modules/rietveld/api.py
diff --git a/scripts/slave/recipe_modules/rietveld/api.py b/scripts/slave/recipe_modules/rietveld/api.py
index b0f5908526325b8b76dbb3949f0d51bc0db5b7cb..91486c955fb18061ef4e23fc585e62266eda4e8f 100644
--- a/scripts/slave/recipe_modules/rietveld/api.py
+++ b/scripts/slave/recipe_modules/rietveld/api.py
@@ -15,11 +15,12 @@ class RietveldApi(recipe_api.RecipeApi):
return root
def apply_issue(self, *root_pieces):
- return self.m.step('apply_issue', [
- self.m.path.depot_tools('apply_issue'),
+ return self.m.python('apply_issue',
+ self.m.path.depot_tools('apply_issue.py'), [
'-r', self.m.path.checkout(*root_pieces),
'-i', self.m.properties['issue'],
'-p', self.m.properties['patchset'],
'-s', self.m.properties['rietveld'],
- '-e', 'commit-bot@chromium.org'])
+ '-e', 'commit-bot@chromium.org',
+ '--no-commit'])

Powered by Google App Engine
This is Rietveld 408576698