We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd185c3 commit ad1fbdeCopy full SHA for ad1fbde
run-tests.php
@@ -398,15 +398,13 @@ function main(): void
398
399
$is_switch = true;
400
401
- if ($repeat) {
402
- foreach ($cfgtypes as $type) {
403
- if (strpos($switch, '--' . $type) === 0) {
404
- foreach ($cfgfiles as $file) {
405
- if ($switch == '--' . $type . '-' . $file) {
406
- $cfg[$type][$file] = true;
407
- $is_switch = false;
408
- break;
409
- }
+ foreach ($cfgtypes as $type) {
+ if (strpos($switch, '--' . $type) === 0) {
+ foreach ($cfgfiles as $file) {
+ if ($switch == '--' . $type . '-' . $file) {
+ $cfg[$type][$file] = true;
+ $is_switch = false;
+ break;
410
}
411
412
0 commit comments