Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion comfy_cli/command/custom_nodes/cm_cli_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@
print(f"Execute from: {workspace_path}")

try:
result = subprocess.run(cmd, env=new_env, check=True, capture_output=True, text=True)
result = subprocess.run(

Check warning on line 60 in comfy_cli/command/custom_nodes/cm_cli_util.py

View check run for this annotation

Codecov / codecov/patch

comfy_cli/command/custom_nodes/cm_cli_util.py#L60

Added line #L60 was not covered by tests
cmd, env=new_env, check=True, capture_output=True, text=True, encoding="utf-8", errors="replace"
)
print(result.stdout)

if fast_deps and args[0] in _dependency_cmds:
Expand Down