We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c672025 commit b5244d1Copy full SHA for b5244d1
1 file changed
src/comfy_pack/package.py
@@ -68,9 +68,7 @@ def install_comfyui(snapshot, workspace: Path, verbose: int = 0):
68
shutil.rmtree(workspace)
69
_clone_commit(COMFYUI_REPO, comfyui_commit, workspace, verbose=verbose)
70
manager_node = next(
71
- url
72
- for url in snapshot.get("git_custom_nodes", {})
73
- if url.endswith("ComfyUI-Manager.git")
+ url for url in snapshot.get("git_custom_nodes", {}) if "ComfyUI-Manager" in url
74
)
75
if manager_node:
76
manager_commit = snapshot["git_custom_nodes"][manager_node]["hash"].strip()
0 commit comments