forked from comfyanonymous/ComfyUI
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a update/update_comfyui_stable.bat to the standalones.
- Loading branch information
1 parent
ab4dd19
commit 153d0a8
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@echo off | ||
..\python_embeded\python.exe .\update.py ..\ComfyUI\ --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 --stable | ||
) | ||
if "%~1"=="" pause |