1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix master branch check in find-target-branch.bat

This commit is contained in:
Ilija Tovilo
2023-09-03 14:18:41 +02:00
parent 341d54c412
commit 9ce9c11ee8

View File

@@ -3,6 +3,6 @@
for /f "usebackq tokens=3" %%i in (`findstr PHP_MAJOR_VERSION main\php_version.h`) do set BRANCH=%%i
for /f "usebackq tokens=3" %%i in (`findstr PHP_MINOR_VERSION main\php_version.h`) do set BRANCH=%BRANCH%.%%i
if /i "%BRANCH%" equ "8.3" (
if /i "%BRANCH%" equ "8.4" (
set BRANCH=master
)