13 lines
285 B
Batchfile
13 lines
285 B
Batchfile
@echo off
|
|
|
|
rem Doing this individually means we can just skip over any that error
|
|
for /D %%G in (%CD%\*) do (
|
|
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
|