Commit 09c73710 authored by vladlearns's avatar vladlearns
Browse files

chore: auto update all extensions using scripts

parent 0cc0ee1b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
for /d %%i in (*) do @if exist "%%i\.git" (echo Pulling updates for %%i... & git -C "%%i" pull)
 No newline at end of file
+3 −0
Original line number Diff line number Diff line
ls | while read dir; do if [ -d "$dir/.git" ]; 
then echo "Pulling updates for $dir..."; 
git -C "$dir" pull; fi; done
 No newline at end of file