mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-26 02:49:09 -06:00
@@ -53,9 +53,10 @@ def find_executable(exe, _environ=None):
|
||||
environ = _environ if _environ is not None else os.environ
|
||||
|
||||
if 'PATHEXT' in environ:
|
||||
possible_exe_names = (exe,) + tuple(
|
||||
possible_exe_names = tuple(
|
||||
exe + ext.lower() for ext in environ['PATHEXT'].split(os.pathsep)
|
||||
)
|
||||
) + (exe,)
|
||||
|
||||
else:
|
||||
possible_exe_names = (exe,)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user