mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-11 21:16:46 +03:00
14 lines
181 B
Batchfile
14 lines
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.
|