Files
pre-commit/pre_commit/languages/script.py
Anthony Sottile 6bac405d40 Minor cleanups
2018-11-01 18:05:36 -07:00

16 lines
402 B
Python

from __future__ import unicode_literals
from pre_commit.languages import helpers
ENVIRONMENT_DIR = None
get_default_version = helpers.basic_get_default_version
healthy = helpers.basic_healthy
install_environment = helpers.no_install
def run_hook(prefix, hook, file_args):
cmd = helpers.to_cmd(hook)
cmd = (prefix.path(cmd[0]),) + cmd[1:]
return helpers.run_xargs(hook, cmd, file_args)