mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-11 04:56:41 +03:00
14 lines
No EOL
181 B
Batchfile
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. |