| Index: recipe_modules/git/api.py
|
| diff --git a/recipe_modules/git/api.py b/recipe_modules/git/api.py
|
| index d20f8a4dab1d57d1d0681e5a91d0e39b2da3b5ac..dddb1de8001f21eaadc096e6fece09797b1841c2 100644
|
| --- a/recipe_modules/git/api.py
|
| +++ b/recipe_modules/git/api.py
|
| @@ -41,9 +41,10 @@ class GitApi(recipe_api.RecipeApi):
|
| """Ensures that depot_tools/git.bat actually exists."""
|
| if not self.m.platform.is_win or self.initialized_win_git:
|
| return
|
| - self.m.step(
|
| + self.m.python(
|
| 'ensure git tooling on windows',
|
| - [self.package_repo_resource('bootstrap', 'win', 'win_tools.bat')],
|
| + self.package_repo_resource('bootstrap', 'win', 'git_bootstrap.py'),
|
| + ['--verbose'],
|
| infra_step=True,
|
| cwd=self.package_repo_resource(),
|
| timeout=300)
|
|
|