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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py

Issue 2818223002: Change GitCL to initialize git executable name on Windows. (Closed)
Patch Set: - Created 3 years, 8 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: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
index 56048f875fd2d9514cde2864b79b5272070c40ae..11faf9a74684a3c744b0585221924bd66a28e110 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
@@ -11,9 +11,7 @@ class MockGit(object):
# Arguments are listed below, even if they're unused, in order to match
# the Git class. pylint: disable=unused-argument
- executable_name = 'mock-git'
-
- def __init__(self, cwd=None, filesystem=None, executive=None):
+ def __init__(self, cwd=None, filesystem=None, executive=None, platform=None):
self.checkout_root = '/mock-checkout'
self.cwd = cwd or self.checkout_root
self.added_paths = set()

Powered by Google App Engine
This is Rietveld 408576698