Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -23,10 +23,10 @@ if not os.path.exists("ComfyUI"):
|
|
| 23 |
custom_nodes_dir = os.path.join("ComfyUI", "custom_nodes")
|
| 24 |
os.makedirs(custom_nodes_dir, exist_ok=True)
|
| 25 |
|
| 26 |
-
# Clone
|
| 27 |
-
usd_dir = os.path.join(custom_nodes_dir, "
|
| 28 |
if not os.path.exists(usd_dir):
|
| 29 |
-
subprocess.run(["git", "clone", "https://github.com/ssitu/
|
| 30 |
|
| 31 |
# Clone comfy_mtb
|
| 32 |
mtb_dir = os.path.join(custom_nodes_dir, "comfy_mtb")
|
|
|
|
| 23 |
custom_nodes_dir = os.path.join("ComfyUI", "custom_nodes")
|
| 24 |
os.makedirs(custom_nodes_dir, exist_ok=True)
|
| 25 |
|
| 26 |
+
# Clone UltimateSDUpscaler
|
| 27 |
+
usd_dir = os.path.join(custom_nodes_dir, "ComfyUI_UltimateSDUpscaler")
|
| 28 |
if not os.path.exists(usd_dir):
|
| 29 |
+
subprocess.run(["git", "clone", "https://github.com/ssitu/ComfyUI_UltimateSDUpscaler", usd_dir])
|
| 30 |
|
| 31 |
# Clone comfy_mtb
|
| 32 |
mtb_dir = os.path.join(custom_nodes_dir, "comfy_mtb")
|