Files
RobustToolbox/Tools/statsvn/genstats.bat
Pieter-Jan Briers afe3913893 Fix EOLs (#235)
2017-06-14 21:42:48 -06:00

22 lines
495 B
Batchfile

@echo off
if exist out goto continue
:cleanup
call cleanup.bat
goto gen
:gen
mkdir out
cd ..\..\
svn log --xml -v svn://games.ques.to/ss3d/ss3d/trunk > Tools\statsvn\out\svn.log
cd Tools\statsvn\out
java -jar ..\statsvn.jar -threads 5 -exclude "Lidgren.Network/**:Media/**" -include "**/*.cs:**/*.xml" svn.log ..\..\..\
cd ..
goto end
:continue
SET /P ANSWER=stat output dir is not empty. Continue (Y/N)?
if /i {%ANSWER%}=={y} (goto cleanup)
if /i {%ANSWER%}=={Y} (goto cleanup)
goto end
:end