Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Aug 28, 2024
1 parent 9aa06d0 commit d749910
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions comfy_cli/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from comfy_cli.config_manager import ConfigManager
from comfy_cli.constants import GPU_OPTION, CUDAVersion
from comfy_cli.env_checker import EnvChecker
from comfy_cli.standalone import StandalonePython
from comfy_cli.standalone import StandalonePythonBase
from comfy_cli.update import check_for_updates
from comfy_cli.workspace_manager import WorkspaceManager, check_comfy_repo

Expand Down Expand Up @@ -582,10 +582,10 @@ def standalone(
proc = utils.get_proc() if proc is None else proc

if rehydrate:
sty = StandalonePython.FromTarball(fpath="python.tgz")
sty = StandalonePythonBase.FromTarball(fpath="python.tgz")
sty.rehydrate_comfy_deps()
else:
sty = StandalonePython.FromDistro(platform=platform, proc=proc)
sty = StandalonePythonBase.FromDistro(platform=platform, proc=proc)
sty.dehydrate_comfy_deps(comfyDir=comfy_path, extraSpecs=cli_spec)
sty.to_tarball()

Expand Down

0 comments on commit d749910

Please sign in to comment.