Check for updates #1726
natemac
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Sorry I'm not to savy with github...
I built into my "webui-user.bat" a question to check for updates, that auto answers NO after 5 seconds.
`
@echo off
set PYTHON=
set GIT=
set VENV_DIR=
set COMMANDLINE_ARGS=
echo AUTOMATIC1111 / stable-diffusion-webui
CHOICE /T 5 /M "Do you want to check for Updates? Yes[y] or No[n]?" /D N
IF ERRORLEVEL 2 (GOTO :launch)
:update
echo Checking for Updates...
git pull https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
:launch
cls
call webui.bat
`
Beta Was this translation helpful? Give feedback.
All reactions