Files
stable-diffusion-webui/extensions/update-all.sh
2023-03-08 23:00:55 +02:00

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