chore: removed scripts and added a flag to launch.py

This commit is contained in:
vladlearns
2023-03-09 16:25:18 +02:00
parent 09c73710c9
commit b07b7057f0
3 changed files with 13 additions and 5 deletions

View File

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

View File

@@ -1,3 +0,0 @@
ls | while read dir; do if [ -d "$dir/.git" ];
then echo "Pulling updates for $dir...";
git -C "$dir" pull; fi; done