mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 10:25:16 +00:00
11 lines
431 B
Batchfile
Executable File
11 lines
431 B
Batchfile
Executable File
@echo off
|
|
:: 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.
|
|
..\python_embeded\python.exe .\update.py ..\ComfyUI\ --skip_self_update --proxy %proxy% --stable
|
|
)
|
|
if "%~1"=="" pause
|