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

Fix early exit condition in phpize.bat (#19886)

This commit is contained in:
Shivam Mathur
2025-09-19 17:32:34 +05:30
committed by GitHub
parent 4a58cf3671
commit e408bcafb2

View File

@@ -1,7 +1,7 @@
@echo off
SET PHP_BUILDCONF_PATH=%~dp0
cscript /nologo /e:jscript %PHP_BUILDCONF_PATH%\script\phpize.js %*
IF ERRORLEVEL 0 exit /b 3
IF %ERRORLEVEL% NEQ 0 exit /b 3
IF NOT EXIST configure.bat (
echo Error generating configure script, configure script was not copied
exit /b 3