mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-02-04 04:32:57 +08: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 |