chore: auto update all extensions using scripts

master
vladlearns 3 years ago
parent 0cc0ee1bcb
commit 09c73710c9

@ -0,0 +1 @@
for /d %%i in (*) do @if exist "%%i\.git" (echo Pulling updates for %%i... & git -C "%%i" pull)

@ -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…
Cancel
Save