mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00: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