mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-03-11 16:09:51 +00:00
3 lines
118 B
Bash
3 lines
118 B
Bash
ls | while read dir; do if [ -d "$dir/.git" ];
|
|
then echo "Pulling updates for $dir...";
|
|
git -C "$dir" pull; fi; done |