15 lines
271 B
Batchfile
15 lines
271 B
Batchfile
@ECHO OFF
|
|
|
|
SET repo=https://github.com/libsdl-org/SDL
|
|
|
|
echo Data repository: %repo%
|
|
|
|
mkdir data
|
|
cd data
|
|
|
|
git clone %repo% target
|
|
cd target
|
|
git log --pretty=format:"%%H;%%an;%%ae;%%at;%%G?" --numstat > ../data.txt
|
|
|
|
cd ../../ManagementScript
|
|
BeefBuild -run -config=Release
|