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

Unified Diff: scripts/slave/annotated_run.py

Issue 14602020: Add an AOSP builder recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: remove the need for passing input into repo init Created 7 years, 7 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 | « no previous file | scripts/slave/compile.py » ('j') | scripts/slave/recipe_util.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/annotated_run.py
diff --git a/scripts/slave/annotated_run.py b/scripts/slave/annotated_run.py
index b5ded0ccaf6c742c90307f52495add2d8ce53bdd..f31e14e82d99fe07960ad2e0c6f7f16ba472fd34 100755
--- a/scripts/slave/annotated_run.py
+++ b/scripts/slave/annotated_run.py
@@ -198,7 +198,7 @@ def main():
if item == recipe_util.PropertyPlaceholder:
new_cmd.extend(property_placeholder_lst)
else:
- new_cmd.append(item)
+ new_cmd.append(str(item))
step['cmd'] = new_cmd
if 'cwd' in step:
[new_cwd] = expand_root_placeholder(root, [step['cwd']])
« no previous file with comments | « no previous file | scripts/slave/compile.py » ('j') | scripts/slave/recipe_util.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698