mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-05-08 08:19:13 -05:00
Simplify if statement slightly
This commit is contained in:
@@ -24,15 +24,16 @@ def _envdir(prefix, version):
|
|||||||
|
|
||||||
|
|
||||||
def get_env_patch(venv): # pragma: windows no cover
|
def get_env_patch(venv): # pragma: windows no cover
|
||||||
lib_dir = 'lib'
|
|
||||||
if sys.platform == 'cygwin': # pragma: no cover
|
if sys.platform == 'cygwin': # pragma: no cover
|
||||||
_, win_venv, _ = cmd_output('cygpath', '-w', venv)
|
_, win_venv, _ = cmd_output('cygpath', '-w', venv)
|
||||||
install_prefix = r'{}\bin'.format(win_venv.strip())
|
install_prefix = r'{}\bin'.format(win_venv.strip())
|
||||||
|
lib_dir = 'lib'
|
||||||
elif sys.platform == 'win32': # pragma: no cover
|
elif sys.platform == 'win32': # pragma: no cover
|
||||||
install_prefix = bin_dir(venv)
|
install_prefix = bin_dir(venv)
|
||||||
lib_dir = 'Scripts'
|
lib_dir = 'Scripts'
|
||||||
else: # pragma: windows no cover
|
else: # pragma: windows no cover
|
||||||
install_prefix = venv
|
install_prefix = venv
|
||||||
|
lib_dir = 'lib'
|
||||||
return (
|
return (
|
||||||
('NODE_VIRTUAL_ENV', venv),
|
('NODE_VIRTUAL_ENV', venv),
|
||||||
('NPM_CONFIG_PREFIX', install_prefix),
|
('NPM_CONFIG_PREFIX', install_prefix),
|
||||||
|
|||||||
Reference in New Issue
Block a user