forked from LostRuins/koboldcpp
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcreate_ver_file.bat
More file actions
33 lines (27 loc) · 822 Bytes
/
create_ver_file.bat
File metadata and controls
33 lines (27 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@echo off
setlocal enabledelayedexpansion
echo Create Version File
:: Read the version string from koboldcpp.py
for /f "tokens=2 delims== " %%A in ('findstr "KcppVersion" koboldcpp.py') do (
set "version=%%~A"
goto :done
)
:done
:: Display the extracted version (optional, for debugging)
echo Extracted Version: %version%
for /f "tokens=1,2 delims=." %%a in ("%version%") do (
set version_major=%%a
set version_minor=%%b
)
echo Major Version: %version_major%
echo Minor Version: %version_minor%
:: Replace all instances of "MYVER" in foo.txt with the version
(
for /f "delims=" %%i in (version_template.txt) do (
set "line=%%i"
set "line=!line:MYVER_MAJOR=%version_major%!"
set "line=!line:MYVER_MINOR=%version_minor%!"
echo !line!
)
) > "version.txt"
endlocal