Files
core/Common/3dParty/fetch.bat
Alexey Golubev 9b398a713c Create fetch.bat
2016-08-15 17:15:35 +03:00

14 lines
165 B
Batchfile

SET SCRIPTPATH=%~dp0
CD /D %~dp0
FOR /f "tokens=*" %%i in ('DIR /a:d /b *') DO (
CD /D %~dp0
ECHO %%i
if exist %%i/fetch.bat (
call %%i/fetch.bat
)
)