Forráskód Böngészése

[lit] allow find git usr bin in path directly. (#5385)

This is for case where git usr bin is not in winreg.
Xiang Li 2 éve
szülő
commit
1775fffc0b
1 módosított fájl, 4 hozzáadás és 1 törlés
  1. 4 1
      utils/lit/lit/TestingConfig.py

+ 4 - 1
utils/lit/lit/TestingConfig.py

@@ -64,7 +64,10 @@ class TestingConfig:
         if sys.platform == 'win32':
             required_tools = [
                 'cmp.exe', 'grep.exe', 'sed.exe', 'diff.exe', 'echo.exe', 'ls.exe']
-            path = _find_git_windows_unix_tools(required_tools)
+            path = lit.util.whichTools(required_tools, all_path)
+            if path is None:
+                path = _find_git_windows_unix_tools(required_tools)
+
             all_path = f"{path};{all_path}"
         environment = {
             'PATH' : all_path,