Browse Source

fix: remove useless exitcode printing

pull/642/head
Dr.Lt.Data 7 months ago
parent
commit
f7edfa6f54
  1. 5
      glob/manager_core.py

5
glob/manager_core.py

@ -22,7 +22,7 @@ sys.path.append(glob_path)
import cm_global
from manager_util import *
version = [2, 25]
version = [2, 25, 1]
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
@ -180,8 +180,7 @@ class ManagerFuncs:
print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
return 0
out = subprocess.check_call(cmd, cwd=cwd)
print(out)
subprocess.check_call(cmd, cwd=cwd)
return 0

Loading…
Cancel
Save