Skip to content

Commit f60c84d

Browse files
committed
DEBUG do not skip lookup on skipped exts
1 parent e749632 commit f60c84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ function find_files(string $dir, bool $is_ext_dir = false, bool $ignore = false)
10891089
if ($skip_ext) {
10901090
$exts_skipped[] = $name;
10911091
}
1092-
find_files("{$dir}/{$name}", false, $ignore || $skip_ext);
1092+
find_files("{$dir}/{$name}", false, $ignore/* || $skip_ext*/);
10931093
}
10941094

10951095
// Cleanup any left-over tmp files from last run.

0 commit comments

Comments
 (0)