fix: remove useless exitcode printing

This commit is contained in:
Dr.Lt.Data 2024-05-04 17:06:57 +09:00
parent 4de5776a1d
commit f7edfa6f54

View File

@ -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