mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-15 05:20:20 -06:00
Move most of the actual hook script into pre-commit hook-impl
This commit is contained in:
@@ -29,10 +29,8 @@ def find_executable(
|
||||
environ = _environ if _environ is not None else os.environ
|
||||
|
||||
if 'PATHEXT' in environ:
|
||||
possible_exe_names = tuple(
|
||||
exe + ext.lower() for ext in environ['PATHEXT'].split(os.pathsep)
|
||||
) + (exe,)
|
||||
|
||||
exts = environ['PATHEXT'].split(os.pathsep)
|
||||
possible_exe_names = tuple(f'{exe}{ext}' for ext in exts) + (exe,)
|
||||
else:
|
||||
possible_exe_names = (exe,)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user