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

Unified Diff: tools/auto_bisect/builder.py

Issue 583793002: Properly escape goma dir on windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed another printf Created 6 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/builder.py
diff --git a/tools/auto_bisect/builder.py b/tools/auto_bisect/builder.py
index f039a57e5d988449cc9d4782ea0c9e51e90637a0..6b530f78ac133576640cda54f9462cbcb8404206 100644
--- a/tools/auto_bisect/builder.py
+++ b/tools/auto_bisect/builder.py
@@ -40,7 +40,8 @@ class Builder(object):
'Path to visual studio could not be determined.')
else:
SetBuildSystemDefault(opts.build_preference, opts.use_goma,
- opts.goma_dir)
+ # Need to re-escape goma dir, see crbug.com/394990
+ opts.goma_dir.encode('string_escape'))
else:
if not opts.build_preference:
if 'ninja' in os.getenv('GYP_GENERATORS', default=''):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698