Skip to content

Commit ae9b0aa

Browse files
committed
Add -q flag for not say shit when no errors were found
1 parent 0601faa commit ae9b0aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy_cli/command/custom_nodes/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ def publish(
710710
typer.echo("Running security checks...")
711711
try:
712712
# Run ruff check with security rules and --exit-zero to only warn
713-
cmd = ["ruff", "check", ".", "--select", "S102,S307", "--exit-zero"]
713+
cmd = ["ruff", "check", ".", "-q", "--select", "S102,S307", "--exit-zero"]
714714
result = subprocess.run(cmd, capture_output=True, text=True)
715715

716716
if result.stdout: # Changed from checking returncode to checking if there's output

0 commit comments

Comments
 (0)