Skip to content

Commit 9ce9c11

Browse files
committed
Fix master branch check in find-target-branch.bat
1 parent 341d54c commit 9ce9c11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/windows/find-target-branch.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
for /f "usebackq tokens=3" %%i in (`findstr PHP_MAJOR_VERSION main\php_version.h`) do set BRANCH=%%i
44
for /f "usebackq tokens=3" %%i in (`findstr PHP_MINOR_VERSION main\php_version.h`) do set BRANCH=%BRANCH%.%%i
55

6-
if /i "%BRANCH%" equ "8.3" (
6+
if /i "%BRANCH%" equ "8.4" (
77
set BRANCH=master
88
)

0 commit comments

Comments
 (0)