mirror of
https://github.com/openvinotoolkit/stable-diffusion-webui.git
synced 2024-12-15 07:03:06 +03:00
chore: auto update all extensions using scripts
This commit is contained in:
parent
0cc0ee1bcb
commit
09c73710c9
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…
Reference in New Issue
Block a user