Fix compiler on Windows (#9730)

main
John Stevenson 3 years ago committed by GitHub
parent 41e329a458
commit dfc69140fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -135,7 +135,7 @@ class Compiler
foreach ($finder as $file) {
if (in_array(realpath($file), $extraFiles, true)) {
unset($extraFiles[array_search(realpath($file), $extraFiles, true)]);
} elseif (!preg_match('{(/LICENSE|\.php)$}', $file)) {
} elseif (!preg_match('{([/\\\\]LICENSE|\.php)$}', $file)) {
$unexpectedFiles[] = (string) $file;
}

Loading…
Cancel
Save