Create fetch.bat

This commit is contained in:
Alexey Golubev
2016-08-15 17:15:35 +03:00
committed by GitHub
parent 210a22ba32
commit 9b398a713c

13
Common/3dParty/fetch.bat Normal file
View File

@ -0,0 +1,13 @@
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
)
)