X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/2f3fa1f6d0cbc2a3f31c7440c422da173b068e7b:/action/main.py..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/action/static/git-logo.png diff --git a/action/main.py b/action/main.py deleted file mode 100644 index fde3125..0000000 --- a/action/main.py +++ /dev/null @@ -1,39 +0,0 @@ -import os -import shlex -import sys -from pathlib import Path -from subprocess import run, PIPE, STDOUT - -ACTION_PATH = Path(os.environ["GITHUB_ACTION_PATH"]) -ENV_PATH = ACTION_PATH / ".black-env" -ENV_BIN = ENV_PATH / ("Scripts" if sys.platform == "win32" else "bin") -OPTIONS = os.getenv("INPUT_OPTIONS", default="") -SRC = os.getenv("INPUT_SRC", default="") -BLACK_ARGS = os.getenv("INPUT_BLACK_ARGS", default="") -VERSION = os.getenv("INPUT_VERSION", default="") - -run([sys.executable, "-m", "venv", str(ENV_PATH)], check=True) - -req = "black[colorama,python2]" -if VERSION: - req += f"=={VERSION}" -pip_proc = run( - [str(ENV_BIN / "python"), "-m", "pip", "install", req], - stdout=PIPE, - stderr=STDOUT, - encoding="utf-8", -) -if pip_proc.returncode: - print(pip_proc.stdout) - print("::error::Failed to install Black.", flush=True) - sys.exit(pip_proc.returncode) - - -base_cmd = [str(ENV_BIN / "black")] -if BLACK_ARGS: - # TODO: remove after a while since this is deprecated in favour of SRC + OPTIONS. - proc = run([*base_cmd, *shlex.split(BLACK_ARGS)]) -else: - proc = run([*base_cmd, *shlex.split(OPTIONS), *shlex.split(SRC)]) - -sys.exit(proc.returncode)