Browse Source

try to use win32api.FindExecutable('git') for .bat and .cmd support instead of running cmd /c git

Stefan Zimmermann 10 years ago
parent
commit
5721c7a126
1 changed files with 8 additions and 1 deletions
  1. 8 1
      dulwich/client.py

+ 8 - 1
dulwich/client.py

@@ -663,7 +663,14 @@ class SubprocessGitClient(TraditionalGitClient):
 
     git = ['git']
     if sys.platform == 'win32': # support .exe, .bat and .cmd
-        git = ['cmd', '/c'] + git
+        try: # to avoid overhead
+            import win32api
+        except ImportError: # run through cmd.exe with some overhead
+            git = ['cmd', '/c'] + git
+        else:
+            status, git = win32api.FindExecutable('git')
+            #TODO: need to check status? (exc is raised if not found)
+            git = [git]
 
     def _connect(self, service, path):
         import subprocess