ComfyUI/.ci/update_windows/update_comfyui_stable.bat

11 lines
431 B
Batchfile
Raw Normal View History

@echo off
2025-01-03 12:41:20 +00:00
:: Set the http proxy here like `set proxy="http://127.0.0.1:888/"`. No spacebar allowed.
set proxy=""
..\python_embeded\python.exe .\update.py ..\ComfyUI\ --proxy %proxy% --stable
if exist update_new.py (
move /y update_new.py update.py
echo Running updater again since it got updated.
2025-01-03 12:41:20 +00:00
..\python_embeded\python.exe .\update.py ..\ComfyUI\ --skip_self_update --proxy %proxy% --stable
)
if "%~1"=="" pause