We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
subprocess.run()
1 parent 7cee02f commit 7b269b4Copy full SHA for 7b269b4
cpp_linter_hooks/util.py
@@ -62,7 +62,7 @@ def parse_version(v: str):
62
def _install_tool(tool: str, version: str) -> Optional[Path]:
63
"""Install a tool using pip, suppressing output."""
64
try:
65
- subprocess.check_call(
+ subprocess.run(
66
[sys.executable, "-m", "pip", "install", f"{tool}=={version}"],
67
capture_output=True,
68
check=True,
0 commit comments