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

Unified Diff: git_cl/git_cl.py

Issue 6369012: Support msysgit with Chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Parse the first line for a fallback approach Created 9 years, 11 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 | update_depot_tools » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl/git_cl.py
===================================================================
--- git_cl/git_cl.py (revision 72285)
+++ git_cl/git_cl.py (working copy)
@@ -668,8 +668,18 @@
hook = '%s/%s' % (settings.GetRoot(), hook)
if not os.path.exists(hook):
return
- return RunCommand([hook, upstream_branch], error_ok=error_ok,
ncarter (slow) 2011/01/29 02:19:05 Sorry if my email wasn't totally clear: the entire
- redirect_stdout=False)
+ # msysgit requires sys.executable to be present. This assumes all hooks are
+ # scripted in python. Which should be okay.
+ cmd = [hook, upstream_branch]
+ if sys.platform == 'win32':
+ with open(hook, 'r') as f:
+ if f.readline().startswith('#!/usr/bin/python'):
+ cmd.insert(0, sys.executable)
+ else:
+ DieWithError('It seems your environment is msysgit, and the hook [%s] '
+ 'will not execute correctly. The hook must be scripted '
+ 'in Python for this to work.')
+ return RunCommand(cmd, error_ok=error_ok, redirect_stdout=False)
def CMDpresubmit(parser, args):
« no previous file with comments | « no previous file | update_depot_tools » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698