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

Unified Diff: recipe_modules/git/api.py

Issue 2264583002: git: use new python script to bootstrap git on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 4 years, 4 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 | recipe_modules/git/example.expected/platform_win.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | recipe_modules/git/example.expected/platform_win.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698