mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-02-02 13:51:40 -08:00
chore: auto update all extensions using scripts
This commit is contained in:
parent
0cc0ee1bcb
commit
09c73710c9
2 changed files with 4 additions and 0 deletions
1
extensions/update-all.bat
Normal file
1
extensions/update-all.bat
Normal file
|
|
@ -0,0 +1 @@
|
|||
for /d %%i in (*) do @if exist "%%i\.git" (echo Pulling updates for %%i... & git -C "%%i" pull)
|
||||
3
extensions/update-all.sh
Normal file
3
extensions/update-all.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
ls | while read dir; do if [ -d "$dir/.git" ];
|
||||
then echo "Pulling updates for $dir...";
|
||||
git -C "$dir" pull; fi; done
|
||||
Loading…
Add table
Add a link
Reference in a new issue