From 9ce9c11ee8a588f9107c7b7f8b2c2ab6338eda0b Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Sun, 3 Sep 2023 14:18:41 +0200 Subject: [PATCH] Fix master branch check in find-target-branch.bat --- .github/scripts/windows/find-target-branch.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/windows/find-target-branch.bat b/.github/scripts/windows/find-target-branch.bat index 43b28521497..77d16840481 100644 --- a/.github/scripts/windows/find-target-branch.bat +++ b/.github/scripts/windows/find-target-branch.bat @@ -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 )