Skip to content

Commit

Permalink
fix: add command log
Browse files Browse the repository at this point in the history
  • Loading branch information
phi-friday committed Aug 25, 2024
1 parent 9fa01f7 commit 9b6f9f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/sync_uv_pre_commit/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def resolve_pyproject(
extras = (key, *extras)
extras = tuple(extra for extra in extras if extra in valid_extras)
command = [*command, *chain.from_iterable(("--extra", extra) for extra in extras)]
logger.info("Running command:\n %s", " ".join(command))

uv_process = subprocess.run( # noqa: S603
command, cwd=temp_directory, check=False, capture_output=True, text=True
Expand Down

0 comments on commit 9b6f9f3

Please sign in to comment.