blob: 4f94fee62bbd1aea139018ecc15f55093c9f8698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
rem del /F /Q version.txt
svn cleanup
svn update > update.log
cd build
for /F %%g in ('svnversion build.no') do set Revision=%%g
for /F "tokens=1,2,3 delims= " %%i in (build.no) do set MirVer=%%i.%%j.%%k
cd ..
rem echo v%MirVer%_%Revision% > version.txt
rem svn log -l 30 >> version.txt
echo %date% %time% > timestamp.chk
|