(self, cmd, cwd='.')
| 1674 | pass |
| 1675 | |
| 1676 | def run_script(self, cmd, cwd='.'): |
| 1677 | if len(cmd) > 0 and cmd[0].startswith("#"): |
| 1678 | print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`") |
| 1679 | return 0 |
| 1680 | |
| 1681 | subprocess.check_call(cmd, cwd=cwd, env=get_script_env()) |
| 1682 | |
| 1683 | return 0 |
| 1684 | |
| 1685 | |
| 1686 | manager_funcs = ManagerFuncs() |
no test coverage detected