Compare commits

...

2 Commits

Author SHA1 Message Date
Bottersnike 43f2a7f617 Even smarter setup 2022-02-03 21:18:48 +00:00
Bottersnike 131c2a20c5 Init in setup 2022-02-03 21:18:07 +00:00
1 changed files with 4 additions and 3 deletions

View File

@ -2,11 +2,12 @@
rem Doing this individually means we can just skip over any that error
for /D %%G in (%CD%\*) do (
git submodule update %%~nG
git submodule update --init %%~nG
)
for /D %%G in (%CD%\*) do if exist %%G\requirements.txt (
py -m pip install -r %%G\requirements.txt
)
py -m pip install -e eaapi
for /D %%G in (%CD%\*) do if exist %%G\setup.py (
py -m pip install -e %%~nG
)