Skip to content

Commit 0d8aebf

Browse files
authored
Fix condition to check for config.w32 in phpize (#17667)
1 parent e306a2e commit 0d8aebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

win32/build/phpize.js.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ if (buildconf_process_args() == 0) {
203203
WScript.Quit(3);
204204
}
205205

206-
if (FSO.FileExists("config.w32")) {
206+
if (!FSO.FileExists("config.w32")) {
207207
STDERR.WriteLine("Cannot find config.w32");
208208
STDERR.WriteLine("Must be run from the root of the extension source");
209209
WScript.Quit(10);

0 commit comments

Comments
 (0)