Skip to content

Commit

Permalink
chore: install ComfyUI-Manager in lowercase folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
jimlee2048 committed Mar 1, 2025
1 parent 6e92daf commit db45ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comfy_cli/command/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def pip_install_comfyui_dependencies(

# install requirements for manager
def pip_install_manager_dependencies(repo_dir):
os.chdir(os.path.join(repo_dir, "custom_nodes", "ComfyUI-Manager"))
os.chdir(os.path.join(repo_dir, "custom_nodes", "comfyui-manager"))

Check warning on line 159 in comfy_cli/command/install.py

View check run for this annotation

Codecov / codecov/patch

comfy_cli/command/install.py#L159

Added line #L159 was not covered by tests
subprocess.run([sys.executable, "-m", "pip", "install", "-r", "requirements.txt"], check=True)


Expand Down Expand Up @@ -229,7 +229,7 @@ def execute(
if skip_manager:
rprint("Skipping installation of ComfyUI-Manager. (by --skip-manager)")
else:
manager_repo_dir = os.path.join(repo_dir, "custom_nodes", "ComfyUI-Manager")
manager_repo_dir = os.path.join(repo_dir, "custom_nodes", "comfyui-manager")

Check warning on line 232 in comfy_cli/command/install.py

View check run for this annotation

Codecov / codecov/patch

comfy_cli/command/install.py#L232

Added line #L232 was not covered by tests

if os.path.exists(manager_repo_dir):
if restore and not fast_deps:
Expand Down

0 comments on commit db45ede

Please sign in to comment.