| 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
|
|
|