mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 13:00:10 -06:00
15 lines
360 B
Python
15 lines
360 B
Python
from __future__ import unicode_literals
|
|
|
|
from pre_commit.util import cmd_output
|
|
|
|
|
|
def run_setup_cmd(runner, cmd):
|
|
cmd_output(*cmd, cwd=runner.prefix_dir, encoding=None)
|
|
|
|
|
|
def environment_dir(ENVIRONMENT_DIR, language_version):
|
|
if ENVIRONMENT_DIR is None:
|
|
return None
|
|
else:
|
|
return '{0}-{1}'.format(ENVIRONMENT_DIR, language_version)
|