openmohaa/misc/build_increment.bat
2016-08-02 16:53:43 +02:00

14 lines
No EOL
181 B
Batchfile

@echo off
set BUILD=
IF EXIST %1.txt (
set /p BUILD=<%1.txt
) ELSE (
set BUILD=0
)
set /a BUILD=%BUILD%+1
@echo %BUILD% >%1.txt
echo Successfully wrote build number to %1.txt.