Skip to content

Commit

Permalink
arg order matters
Browse files Browse the repository at this point in the history
mcmonkey4eva committed Jul 10, 2024
1 parent b3935d0 commit cbf9c42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.py
Original file line number Diff line number Diff line change
@@ -105,7 +105,7 @@ def main(args):
start_time = int(datetime.datetime.now().timestamp())
try:
result = subprocess.run(
["comfy", "run", "--workflow", file_path, "--skip-prompt", "--no-enable-telemetry"],
["comfy", "--skip-prompt", "--no-enable-telemetry", "run", "--workflow", file_path],
check=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,

0 comments on commit cbf9c42

Please sign in to comment.