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.
1 parent 9fa01f7 commit 9b6f9f3Copy full SHA for 9b6f9f3
src/sync_uv_pre_commit/cli.py
@@ -72,6 +72,7 @@ def resolve_pyproject(
72
extras = (key, *extras)
73
extras = tuple(extra for extra in extras if extra in valid_extras)
74
command = [*command, *chain.from_iterable(("--extra", extra) for extra in extras)]
75
+ logger.info("Running command:\n %s", " ".join(command))
76
77
uv_process = subprocess.run( # noqa: S603
78
command, cwd=temp_directory, check=False, capture_output=True, text=True
0 commit comments