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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/host.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/host.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
index 77de72eb12cbbe0202cd89a6fb61fb42e67b2ac1..d450892d41cd1e909aacc21d14b1e0811b9ae341 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
@@ -79,7 +79,7 @@ class Host(SystemHost):
def git(self, path=None):
if path:
- return Git(cwd=path, executive=self.executive, filesystem=self.filesystem)
+ return Git(cwd=path, executive=self.executive, filesystem=self.filesystem, platform=self.platform)
if not self._git:
- self._git = Git(filesystem=self.filesystem, executive=self.executive)
+ self._git = Git(filesystem=self.filesystem, executive=self.executive, platform=self.platform)
return self._git

Powered by Google App Engine
This is Rietveld 408576698