mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
22 lines
495 B
Batchfile
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
|